<!-- ================================ -->
<!-- styles.css -->
/* Reset and Base Styles */
  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0066ff;
            --secondary: #00d4ff;
            --dark: #0a0a0a;
            --light: #ffffff;
            --gray: #f5f5f5;
            --card-bg: #1a1a1a;
            --border: rgba(0, 212, 255, 0.2);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--light);
            background: var(--dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }


/* IMPORTANT: This was missing - centers the nav */
nav {
    display: flex;
    justify-content: center; /* Centers the navigation */
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; /* Important for positioning hamburger */
}

/* Desktop Navigation */
.desktop-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 5%;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #ff6b6b;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #ff6b6b;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.1), 
        rgba(0, 212, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.mobile-nav-header h3 {
    color: var(--light);
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 1rem 0;
}

.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.mobile-nav-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--light);
    opacity: 0.8;
}

.mobile-nav-footer p {
    margin: 0;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-footer span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Prevent body scroll when menu is open */
body.mobile-nav-open {
    overflow: hidden;
}


/* FIXED DUAL ARROWS - Clean Positioning */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: rgba(0, 212, 255, 0.25);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
    user-select: none;
    animation: subtlePulse 4s ease-in-out infinite;
}

/* Gentle pulse animation */
@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
        opacity: 0.9;
    }
}

/* Hover state */
.scroll-indicator:hover {
    animation: none;
    background: rgba(0, 212, 255, 0.35);
    border-color: rgba(0, 212, 255, 0.6);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}
/* FIXED Dual Arrows Container - Increased spacing for better mobile/desktop usability */
.dual-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 14px; /* Increased from 8px to 14px for easier clicking */
}

/* FIXED Individual Arrow Styles - Enhanced click areas */
.arrow-up, .arrow-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    /* Larger click area for better mobile usability */
    padding: 8px; /* Increased from 6px to 8px */
}

/* Up arrow - triangle pointing up */
.arrow-up {
    border-bottom: 12px solid rgba(255, 255, 255, 0.9);
    border-top: none;
}

/* Down arrow - triangle pointing down */
.arrow-down {
    border-top: 12px solid rgba(255, 255, 255, 0.9);
    border-bottom: none;
}

/* Make click areas even larger with pseudo-elements */
.arrow-up::before, .arrow-down::before {
    content: '';
    position: absolute;
    top: -14px; /* Increased from -12px */
    left: -14px; /* Increased from -12px */
    right: -14px; /* Increased from -12px */
    bottom: -14px; /* Increased from -12px */
}

/* Better hover effects */
.arrow-up:hover {
    border-bottom-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.arrow-down:hover {
    border-top-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Active state for better feedback */
.arrow-up:active {
    transform: scale(1.1);
    border-bottom-color: rgba(0, 212, 255, 1);
}

.arrow-down:active {
    transform: scale(1.1);
    border-top-color: rgba(0, 212, 255, 1);
}

/* Mobile responsive - Enhanced for touch */
@media (max-width: 480px) {
    .dual-arrows {
        gap: 16px; /* Even more space on mobile for easier touch */
    }
    
    .arrow-up, .arrow-down {
        border-left-width: 7px;
        border-right-width: 7px;
        padding: 10px; /* Larger touch areas on mobile */
    }
    
    .arrow-up {
        border-bottom-width: 10px;
    }
    
    .arrow-down {
        border-top-width: 10px;
    }
    
    /* Even larger tap areas for mobile */
    .arrow-up::before, .arrow-down::before {
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
    }
}



        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 2rem 5%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Header Section */
        .terms-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        .terms-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        .terms-header .effective-date {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Section Cards */
        .terms-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .terms-section:hover {
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.2);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary);
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subsection {
            margin-bottom: 1.5rem;
        }

        .subsection-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--light);
        }

        /* Bullet Points */
        .bullet-list {
            list-style: none;
            padding-left: 0;
        }

        .bullet-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .bullet-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Contact Info Card */
        .contact-card {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .contact-label {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .contact-value {
            color: var(--light);
        }

        /* Final Section */
        .final-section {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin: 2rem 0;
        }

        .version-info {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            opacity: 0.8;
        }



/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 2rem;
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            
            .main-content {
                padding: 1rem 3%;
            }
            
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-section {
                padding: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
        }

        .scroll-to-top:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
        }