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

:root {
    --navy: #0A2E5C;
    --blue: #0077B6;
    --cyan: #00B4D8;
    --light-cyan: #90E0EF;
    --white: #FFFFFF;
    --gray: #E8EDF2;
    --text: #1A1A2E;
    --text-light: rgba(255, 255, 255, 0.85);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Language toggle */
.lang-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 3px;
    z-index: 10;
}

.lang-toggle button {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
}

.lang-toggle button.active {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.lang-toggle button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
    flex: 1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.hero .tagline {
    font-size: 1.15rem;
    color: var(--light-cyan);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero .coming-soon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.platforms {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.platform svg {
    width: 20px;
    height: 20px;
    fill: var(--light-cyan);
}

.contact {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact a {
    color: var(--light-cyan);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1.25rem 1.5rem;
    font-size: 0.8rem;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

/* Privacy policy page */
.privacy-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    line-height: 1.7;
}

.privacy-page .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.privacy-page .back-link:hover {
    text-decoration: underline;
}

.privacy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.privacy-page .updated {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.privacy-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.privacy-page p,
.privacy-page ul {
    margin-bottom: 1rem;
    color: #333;
}

.privacy-page ul {
    padding-left: 1.5rem;
}

.privacy-page li {
    margin-bottom: 0.35rem;
}

/* Language switching */
[data-lang="bs"] { display: none; }
[lang="bs"] [data-lang="bs"] { display: block; }
[lang="bs"] [data-lang="en"] { display: none; }
[lang="bs"] .coming-soon[data-lang="bs"],
[lang="bs"] .platform[data-lang="bs"],
[lang="bs"] .back-link[data-lang="bs"] { display: inline-flex; }
[lang="bs"] span[data-lang="bs"] { display: inline; }

/* Inline elements need inline display */
span[data-lang="bs"] { display: none; }
span[data-lang="en"] { display: inline; }
[lang="bs"] span[data-lang="en"] { display: none; }
[lang="bs"] span[data-lang="bs"] { display: inline; }

/* Coming soon badge needs inline-block */
.coming-soon[data-lang="en"] { display: inline-block; }
.coming-soon[data-lang="bs"] { display: none; }
[lang="bs"] .coming-soon[data-lang="en"] { display: none; }
[lang="bs"] .coming-soon[data-lang="bs"] { display: inline-block; }

/* Platforms need flex */
.platform[data-lang="en"] { display: flex; }
.platform[data-lang="bs"] { display: none; }
[lang="bs"] .platform[data-lang="en"] { display: none; }
[lang="bs"] .platform[data-lang="bs"] { display: flex; }

/* Back link inline-block */
.back-link[data-lang="en"] { display: inline-block; }
.back-link[data-lang="bs"] { display: none; }
[lang="bs"] .back-link[data-lang="en"] { display: none; }
[lang="bs"] .back-link[data-lang="bs"] { display: inline-block; }

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .platforms {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
