@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&display=swap');

/* ---------- GENEL ---------- */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0e111a;
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ---------- NAVBAR ---------- */
nav {
    display: flex;
    justify-content: space-between;
    padding: 24px 5%;
    align-items: center;
    position: relative;
    z-index: 20;
    background-color: #0e111a;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #38d963;
    letter-spacing: 2px;
    text-decoration: none;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #38d963;
    box-shadow: 0 0 15px rgba(56, 217, 99, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #38d963;
    cursor: pointer;
}

#nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

#nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}

#nav-links a:hover, #nav-links a.active {
    color: #38d963;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    #nav-links {
        display: none;
        flex-direction: column;
        background-color: #151a26;
        position: absolute;
        top: 80px;
        right: 5%;
        width: 250px;
        border-radius: 16px;
        padding: 25px;
        gap: 20px;
        border: 2px solid #1f2537;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    #nav-links.active {
        display: flex;
    }
}

/* ---------- ANA İÇERİK ---------- */
main {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #38d963;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: none;
}

.subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-bottom: 50px;
    font-weight: 600;
}

/* ---------- 3D BUTONLAR ---------- */
.btn-3d {
    background-color: #4ade80;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 20px 50px;
    border-radius: 24px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 0 #16a34a;
    transition: transform 0.1s, box-shadow 0.1s;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-3d:active {
    transform: translateY(10px);
    box-shadow: 0 0 0 #16a34a;
}

/* ---------- İNDİRME BÖLÜMÜ ---------- */
.download-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    z-index: 10;
    position: relative;
    padding: 60px 20px;
}

.download-section h2 {
    color: #38d963;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
}

/* ---------- ARKA PLAN OKLARI ---------- */
.maze-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.arrow-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
    will-change: left, top;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 18px solid; 
}

.arrow-body {
    width: 10px;
    height: 100px;
    border-radius: 0 0 6px 6px;
    margin-top: -1px;
}

/* ---------- POLİTİKA SAYFALARI ---------- */
.policy-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background-color: #151a26;
    border-radius: 24px;
    border: 2px solid #1f2537;
    color: #cbd5e1;
    z-index: 10;
    position: relative;
    text-align: left;
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
    color: #38d963;
}

.policy-content .meta {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 600;
}

.policy-content h2 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.policy-content h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background-color: #1f2537;
    margin: 10px 0 0 0;
}

.policy-content p, .policy-content li {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content a {
    color: #38d963;
    text-decoration: none;
    font-weight: 700;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .hero-content { padding: 40px 20px; }
    .policy-content { padding: 30px 20px; margin: 40px 20px; }
    .policy-content h1 { font-size: 2.2rem; }
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #64748b;
    font-size: 1rem;
    z-index: 10;
    position: relative;
    background-color: #0e111a;
    font-weight: 600;
}
