:root {
            --deep-blue: #1a237e;
            --silver: #c0c0c0;
            --white: #ffffff;
            --gradient-blue: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            --gold: #ffd700;
            --shadow-blue: rgba(26, 35, 126, 0.3);
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--deep-blue);
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Floating Animation Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-coin {
            position: absolute;
            color: var(--gold);
            font-size: 24px;
            opacity: 0.3;
            animation: float 8s infinite ease-in-out;
        }

        .floating-star {
            position: absolute;
            color: var(--silver);
            font-size: 16px;
            opacity: 0.2;
            animation: sparkle 3s infinite ease-in-out;
        }

        .floating-diamond {
            position: absolute;
            color: var(--white);
            font-size: 20px;
            opacity: 0.25;
            animation: rotate-float 6s infinite linear;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
            50% { transform: translateY(-40px) rotate(180deg); opacity: 0.7; }
            75% { transform: translateY(-20px) rotate(270deg); opacity: 0.5; }
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
            50% { transform: scale(1.5) rotate(180deg); opacity: 0.6; }
        }

        @keyframes rotate-float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-60px) rotate(360deg); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--silver);
        }

        .header.scrolled {
            background: rgba(26, 35, 126, 0.98);
            box-shadow: 0 4px 20px var(--shadow-blue);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            background: linear-gradient(45deg, var(--gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logo-glow 2s infinite alternate ease-in-out;
        }

        @keyframes logo-glow {
            0% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
            100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-menu a:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .nav-menu a.active {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-menu a.active::after {
            width: 80%;
        }

        .age-badge {
            background: linear-gradient(45deg, #ff4444, #cc3333);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse-badge 2s infinite ease-in-out;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

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

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

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

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(26, 35, 126, 0.98);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            padding: 2rem;
            z-index: 999;
        }

        .mobile-nav.active {
            left: 0;
        }

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

        .mobile-nav ul li {
            margin: 1.5rem 0;
        }

        .mobile-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem;
            display: block;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold);
            transform: translateX(10px);
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* Disclaimer Container */
        .disclaimer-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 2px solid var(--silver);
            margin-top: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .disclaimer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shine 3s infinite ease-in-out;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .disclaimer-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .disclaimer-header h1 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--gold), var(--silver), var(--white));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: title-glow 2s ease-in-out infinite alternate;
        }

        @keyframes title-glow {
            0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
        }

        .disclaimer-header p {
            font-size: 1.3rem;
            color: var(--silver);
            font-weight: 300;
        }

        .disclaimer-content {
            position: relative;
            z-index: 2;
        }

        .disclaimer-intro {
            background: var(--gradient-blue);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border: 2px solid var(--gold);
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .disclaimer-intro h2 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .disclaimer-intro p {
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .disclaimer-section {
            background: rgba(255, 255, 255, 0.08);
            margin: 1.5rem 0;
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--gold);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .disclaimer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: gradient-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes gradient-pulse {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .disclaimer-section:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(5px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
        }

        .disclaimer-section h3 {
            color: var(--gold);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .disclaimer-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .icon {
            font-size: 1.2rem;
            animation: icon-bounce 2s ease-in-out infinite;
        }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .back-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--gold), #ffed4a);
            color: var(--deep-blue);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            margin-top: 2rem;
            animation: button-glow 2s ease-in-out infinite alternate;
        }

        @keyframes button-glow {
            0% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
            100% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
        }

        .back-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }

        .agreement-notice {
            background: rgba(255, 68, 68, 0.1);
            border: 2px solid #ff4444;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
            text-align: center;
        }

        .agreement-notice p {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ff6666;
        }

        /* Footer */
        .footer {
            background: var(--deep-blue);
            padding: 2rem;
            text-align: center;
            border-top: 3px solid var(--gold);
            margin-top: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .footer-copyright {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .disclaimer-header h1 {
                font-size: 2.5rem;
            }

            .disclaimer-container {
                margin: 1rem;
                padding: 2rem 1.5rem;
            }

            .disclaimer-section {
                padding: 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

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

            .disclaimer-intro h2 {
                font-size: 1.5rem;
            }

            .disclaimer-section h3 {
                font-size: 1.2rem;
            }
        }