:root {
            --primary: #FF4E00;
            --secondary: #00A2FF;
            --accent: #FFD300;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --retro-pink: #FF6B8B;
            --retro-blue: #4D77FF;
            --font-main: 'Courier New', monospace;
            --font-heading: 'Arial Black', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .terms-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .terms-title {
            font-size: 48px;
            margin-bottom: 30px;
            color: var(--primary);
            font-family: var(--font-heading);
            text-align: center;
        }
        
        .terms-content h2 {
            font-size: 28px;
            margin: 30px 0 15px;
            color: var(--accent);
        }
        
        .terms-content h3 {
            font-size: 22px;
            margin: 25px 0 10px;
            color: var(--retro-blue);
        }
        
        .terms-content p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .terms-content ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        .terms-content li {
            margin-bottom: 8px;
        }
        
        .update-date {
            font-style: italic;
            margin-top: 40px;
            text-align: right;
            color: rgba(245, 245, 245, 0.7);
        }
        
        footer {
            background-color: #111;
            color: var(--light);
            padding: 50px 20px 20px;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }
        
        .contact-info li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .contact-info .address::before {
            background-image: url('https://cdn-icons-png.flaticon.com/512/484/484167.png');
        }
        
        .contact-info .phone::before {
            background-image: url('https://cdn-icons-png.flaticon.com/512/126/126341.png');
        }
        
        .contact-info .email::before {
            background-image: url('https://cdn-icons-png.flaticon.com/512/542/542689.png');
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 20px;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .terms-title {
                font-size: 36px;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

