:root {
            --dream-blue: #0d2d5c;
            --dream-gold: #f8b319;
            --dream-light: #f5f8fc;
            --dream-dark: #0a1e3c;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand img { height: 40px; }
        .hero-section {
            background: linear-gradient(135deg, var(--dream-dark) 0%, var(--dream-blue) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(248, 179, 25, 0.15) 0%, transparent 70%);
            top: -100px; right: -100px;
            border-radius: 50%;
        }
        .section-title {
            color: var(--dream-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--dream-gold);
        }
        .text-center .section-title::after { left: 50%; transform: translateX(-50%); }
        .feature-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background: var(--dream-light);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(13, 45, 92, 0.15);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--dream-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        .btn-primary {
            background-color: var(--dream-blue);
            border-color: var(--dream-blue);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--dream-dark);
            border-color: var(--dream-dark);
            transform: scale(1.05);
        }
        .btn-outline-light:hover { color: var(--dream-blue); }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dream-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer {
            background-color: var(--dream-dark);
            color: #ccc;
            padding-top: 60px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover { color: white; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .game-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
            height: 100%;
        }
        .game-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transform: translateY(-10px);
        }
        .game-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--dream-gold);
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0; }
            .stats-counter { font-size: 2.5rem; }
        }
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
