:root {
            --primary-dark: #3a0ca3;
            --primary-light: #4361ee;
            --secondary: #f8f9fa;
            --accent: #ff006e;
            --text-dark: #212529;
            --text-light: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: white;
        }
        
        .auth-buttons .btn {
            margin-left: 10px;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
        }
        
        .btn-signup {
            background-color: var(--primary-light);
            border: none;
            color: white;
        }
        
        .btn-signup:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        .btn-login {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .btn-login:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
            text-align: center;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 60px 0;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Help Banner */
        .help-banner {
            background-color: var(--danger);
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        
        .help-banner p {
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .help-banner .helpline {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        /* Responsible Gaming Content */
        .rg-content {
            padding: 60px 0;
        }
        
        .rg-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .rg-card h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-light);
        }
        
        .rg-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .rg-card p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .rg-card ul {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        
        .rg-card ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .warning-box {
            background-color: rgba(220, 53, 69, 0.1);
            border-left: 4px solid var(--danger);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .warning-box h4 {
            color: var(--danger);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .info-box {
            background-color: rgba(67, 97, 238, 0.1);
            border-left: 4px solid var(--primary-light);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .info-box h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .success-box {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .success-box h4 {
            color: var(--success);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Self Assessment */
        .assessment-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .assessment-card {
            background-color: var(--secondary);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            border: 1px solid #e9ecef;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .assessment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .assessment-card h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .assessment-options {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .assessment-options label {
            flex: 1;
            text-align: center;
            padding: 10px;
            background-color: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        
        .assessment-options label:hover {
            background-color: var(--primary-light);
            color: white;
        }
        
        .assessment-options input[type="radio"] {
            display: none;
        }
        
        .assessment-options input[type="radio"]:checked + label {
            background-color: var(--primary-light);
            color: white;
            border-color: var(--primary-light);
        }
        
        /* Tools Section */
        .tools-section {
            padding: 60px 0;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .tool-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .tool-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .tool-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .tool-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .btn-tool {
            background-color: var(--primary-light);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-tool:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        /* Support Organizations */
        .support-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .support-card {
            background-color: var(--secondary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .support-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .support-logo i {
            font-size: 3rem;
            color: var(--primary-light);
        }
        
        .support-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        
        .support-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .support-contact {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 0;
        }
        
        /* Tips Section */
        .tips-section {
            padding: 60px 0;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .tip-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .tip-icon {
            width: 40px;
            height: 40px;
            background-color: var(--success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .tip-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }
        
        .tip-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 60px 0;
            color: white;
            text-align: center;
        }
        
        .cta-box {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-box h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cta-box p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-cta {
            background-color: white;
            color: var(--primary-dark);
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            margin: 0 10px;
        }
        
        .btn-cta:hover {
            background-color: var(--secondary);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        .age-badge-footer {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .rg-card {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .rg-content, .assessment-section, .tools-section, .support-section, .tips-section, .cta-section {
                padding: 40px 0;
            }
            
            .rg-card {
                padding: 20px;
            }
            
            .assessment-options {
                flex-direction: column;
            }
            
            .tools-grid, .support-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .auth-buttons .btn {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .navbar-nav {
                margin-top: 20px;
            }
            
            .rg-card h2 {
                font-size: 1.5rem;
            }
            
            .rg-card h3 {
                font-size: 1.3rem;
            }
            
            .tips-grid {
                grid-template-columns: 1fr;
            }
            
            .btn-cta {
                margin: 5px;
            }
        }

