/* ===== PRIVACY PAGE RESPONSIVE DESIGN ===== */

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #a0cbff;
    --primary-orange: #ffb67a;
    --text-white: #f3f7fc;
    --text-gray: #989ea5;
    --bg-dark: #111113;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #161617;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVIGATION ===== */
.privacy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 120px;
    height: 60px;
    align-items: center;
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(24px);
}

.nav-links a {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 16px;
    background-image: url('../../src/img/desktop/menugt-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    color: var(--text-white) !important;
    transition: all 0.3s;
}

.btn-get-started:hover {
    transform: translateY(-2px);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
}

.menu-toggle {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    padding: 0;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 24px;
    transition: right 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 12px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-blue);
}

.menu-cta {
    background-image: url('../../src/img/mobile/button.bg.png');
    background-size: cover;
    background-position: center;
    padding: 12px 24px !important;
    border-radius: 100px;
    color: var(--text-white) !important;
    text-align: center;
    margin-top: 12px;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

.container {
    max-width: 1199px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 60px;
}

.privacy-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 80px;
}

.privacy-section {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    color: var(--text-white);
    margin-bottom: 16px;
}

.privacy-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text-gray);
}

.privacy-text p {
    margin: 0 0 16px 0;
}

.privacy-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.privacy-text li {
    margin-bottom: 8px;
}

.privacy-text a {
    color: var(--text-gray);
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-text a:hover {
    color: var(--primary-blue);
}

/* ===== FOOTER ===== */
.bottom-info {
    padding: 80px 0 40px;
    position: relative;
}

.bottom-info-box {
    position: relative;
    padding: 80px 40px 40px;
}

.footer-eclipse {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.footer-dot {
    position: absolute;
    bottom: 20px;
    right: 40px;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-left a,
.footer-center a,
.footer-right a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s;
}

.footer-left a:hover,
.footer-center a:hover,
.footer-right a:hover {
    color: var(--primary-blue);
}

.footer-extra {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-extra-inner {
    display: flex;
    gap: 16px;
}

.social-box {
    display: block;
}

.google-play-icon {
    height: 40px;
    width: auto;
}

.footer-extra-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.social-item span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet and below */
@media screen and (max-width: 768px) {
    /* Overflow Fix */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Hide desktop nav, show mobile nav */
    .desktop-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
        padding: 40px 20px 20px 30px;
    }

    /* Privacy Content */
    .privacy-content {
        padding: 100px 20px 60px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .privacy-content h1 {
        font-size: 36px;
        margin-bottom: 32px;
        width: 100% !important;
    }

    .privacy-box {
        padding: 24px 20px;
        margin-bottom: 40px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .privacy-section {
        padding: 24px 0;
        width: 100% !important;
        max-width: 100% !important;
    }

    .privacy-section h2 {
        font-size: 22px;
        line-height: 1.4;
        width: 100% !important;
        max-width: 100% !important;
    }

    .privacy-text {
        font-size: 15px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .privacy-text li {
        margin-bottom: 12px;
    }

    /* Footer */
    .bottom-info {
        padding: 40px 0;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .bottom-info-box {
        padding: 40px 20px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        align-items: center;
    }

    .footer-extra {
        align-items: center;
    }

    .footer-extra-inner {
        justify-content: center;
    }

    .footer-extra-bottom {
        align-items: center;
    }

    .footer-eclipse,
    .footer-dot {
        display: none;
    }
}

/* Small mobile */
@media screen and (max-width: 480px) {
    .privacy-content h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-text {
        font-size: 14px;
    }
}
