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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #0f0f23;
            overflow-x: hidden;
        }

        .background-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, #6366f1 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #8b5cf6 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #ec4899 0%, transparent 50%);
            opacity: 0.1;
            z-index: -1;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #6366f1;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: width 0.3s ease;
        }

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

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #e2e8f0;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 2rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 2rem;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: -1;
        }

        .flag {
            width: 100px;
            height: 60px;
            background: linear-gradient(to bottom, #74ACDF 33%, white 33%, white 66%, #74ACDF 66%);
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            margin: 0 auto 2rem;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .flag::after {
            content: '☀';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: #F1C232;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.25rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .warning {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
            animation: pulse 2s infinite;
        }

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

        .casinos-grid {
            display: grid;
            gap: 2rem;
            margin: 4rem 0;
        }

        .casino-card {
            background: linear-gradient(145deg, rgba(30, 30, 54, 0.8), rgba(45, 45, 78, 0.6));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
        }

        .casino-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .casino-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
        }

        .casino-card:hover::after {
            opacity: 1;
        }

        .casino-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .casino-logo {
            background: white;
            color: #333;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            text-transform: lowercase;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .casino-logo.codere {
            background: #1a1a1a;
            color: white;
        }

        .casino-logo.betsson {
            background: #00a651;
            color: white;
        }

        .casino-logo-image {
            width: 100%;
            height: 60px;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }

        .casino-rating {
            text-align: right;
        }

        .rating-score {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .rating-stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin: 0.5rem 0;
            filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
        }

        .reviews {
            color: #94a3b8;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .bonus-section {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 20px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .bonus-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .bonus-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .bonus-amount {
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .btn {
            padding: 0.875rem 1.5rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
            border: 2px solid rgba(99, 102, 241, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: #6366f1;
        }

        .content-section {
            background: linear-gradient(145deg, rgba(30, 30, 54, 0.8), rgba(45, 45, 78, 0.6));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: 3rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
        }

        .content-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .content-section h3 {
            font-size: 1.5rem;
            color: #e2e8f0;
            margin: 2rem 0 1rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .content-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 2px;
        }

        .content-section p {
            color: #94a3b8;
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: #6366f1;
        }

        .feature-card h4 {
            color: #e2e8f0;
            font-weight: 600;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
        }

        .tips-section {
            background: linear-gradient(135deg, #ec4899, #be185d);
            border-radius: 24px;
            padding: 3rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .tips-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm20 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .tips-section h3 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .tips-section ul {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .tips-section li {
            color: white;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            padding-left: 2rem;
            transition: all 0.3s ease;
        }

        .tips-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 1rem;
            color: #4ade80;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .tips-section li:hover {
            padding-left: 2.5rem;
        }

        footer {
            background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(30, 30, 54, 0.9));
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }

        .responsible-gaming {
            background: rgba(30, 30, 54, 0.9);
            padding: 2rem;
            margin-top: 2rem;
            border-radius: 16px;
            border-top: 2px solid rgba(99, 102, 241, 0.3);
        }

        .gaming-icons {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .gaming-icon {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #e2e8f0;
            font-size: 0.875rem;
            text-align: center;
        }

        .gaming-icon svg {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }

        .gaming-message {
            text-align: center;
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #e2e8f0;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-section a:hover {
            color: #6366f1;
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            color: #64748b;
        }

        .footer-bottom a {
            color: #6366f1;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .hero {
                padding: 2rem 1rem;
            }
            
            .casino-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .content-section {
                padding: 2rem 1.5rem;
            }
            
            .footer-content {
                padding: 2rem 1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .content-section h2 {
                font-size: 2rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
        }
        .policy-header {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .policy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: -1;
        }

        .policy-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .policy-header p {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .policy-content {
            background: linear-gradient(145deg, rgba(30, 30, 54, 0.8), rgba(45, 45, 78, 0.6));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .policy-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
        }

        .policy-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .policy-content h3 {
            font-size: 1.3rem;
            color: #e2e8f0;
            margin: 2rem 0 1rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .policy-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 2px;
        }

        .policy-content p {
            color: #94a3b8;
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.7;
        }

        .policy-content ul {
            color: #94a3b8;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .policy-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .toc {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .toc h3 {
            color: #e2e8f0;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .toc ol {
            color: #94a3b8;
            padding-left: 1.5rem;
        }

        .toc li {
            margin-bottom: 0.5rem;
        }

        .toc a {
            color: #6366f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .toc a:hover {
            color: #8b5cf6;
        }

        .contact-section {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .contact-section a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            display: inline-block;
            transition: background 0.3s ease;
        }

        .contact-section a:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .policy-header {
                padding: 2rem 1rem;
            }
            
            .policy-content {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .policy-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-content h2 {
                font-size: 1.5rem;
            }
        }
        .casino-logo img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.casino-logo div[style*="background: white"] {
    background: white !important;
    padding: 12px !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

@media (max-width: 768px) {
    .casino-logo img {
        width: 150px;
        height: 50px;
    }
    
    .casino-logo div[style*="background: white"] {
        min-height: 70px;
        padding: 10px !important;
    }
}
.disclaimer-section {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.disclaimer-section p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-section strong {
    color: #6366f1;
    font-weight: 700;
}
.disclaimer-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    border: 2px solid #fca5a5;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
}

.disclaimer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.05'%3E%3Cpath d='M40 40c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm20 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

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

.disclaimer-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.warning-icon {
    font-size: 2rem;
    animation: warning-pulse 2s infinite;
}

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

.disclaimer-warning h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.disclaimer-text {
    margin-bottom: 2rem;
}

.disclaimer-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.disclaimer-text strong {
    font-weight: 700;
    text-decoration: underline;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.age-badge {
    background: white;
    color: #dc2626;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.age-restriction span:last-child {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.help-organizations {
    margin-bottom: 2rem;
}

.help-organizations h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.help-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.help-link.gamcare:hover {
    border-color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.help-link.gambleaware:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.help-link.therapy:hover {
    border-color: #ec4899;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.help-link img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.responsible-tools h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .disclaimer-warning {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .disclaimer-warning h3 {
        font-size: 1.5rem;
    }
    
    .help-links {
        flex-direction: column;
    }
    
    .help-link {
        justify-content: center;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .disclaimer-banner {
        padding: 1.5rem 1rem;
    }
    
    .disclaimer-warning h3 {
        font-size: 1.3rem;
    }
    
    .disclaimer-text p {
        font-size: 1rem;
    }
    
    .warning-icon {
        font-size: 1.5rem;
    }
}
.disclaimer-banner {
    animation: disclaimer-glow 3s ease-in-out infinite alternate;
}

@keyframes disclaimer-glow {
    0% {
        box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    }
    100% {
        box-shadow: 0 20px 40px rgba(239, 68, 68, 0.5), 0 0 30px rgba(239, 68, 68, 0.2);
    }
}
.help-organizations-footer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
}

.help-organizations-footer h4 {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.help-links-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.footer-help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-help-link:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.help-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.emergency-contact {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    text-align: center;
}

.emergency-contact p {
    color: #fca5a5;
    font-size: 0.95rem;
    margin: 0;
}

.phone-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    background: rgba(239, 68, 68, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.footer-section h4 {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #6366f1;
    padding-left: 0.5rem;
}

.footer-section a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.8rem;
    opacity: 0.7;
}

.regulatory-info {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
}
@media (max-width: 768px) {
    .help-links-footer {
        grid-template-columns: 1fr;
    }
    
    .footer-help-link {
        justify-content: center;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-organizations-footer {
        padding: 1rem;
    }
    
    .emergency-contact {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .help-organizations-footer h4 {
        font-size: 1rem;
    }
    
    .footer-help-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .emergency-contact p {
        font-size: 0.9rem;
    }
    
    .phone-link {
        display: inline-block;
        margin-top: 0.5rem;
    }
}