:root {
    --deep-blue: #1e3a8a;
    --deep-blue-dark: #1e40af;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --white: #ffffff;
    --silver-light: #e5e7eb;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --font-primary: 'Arial', sans-serif;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
}

/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize font rendering */
body, input, textarea, button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Reduce repaints and reflows */
.site-footer {
    will-change: transform;
    contain: layout style paint;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Burger Menu Toggle */
.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.burger-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .burger-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--gradient-blue);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        border-radius: 0;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .header-badge {
        order: 2;
        margin-left: auto;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Optimize Hero for Mobile - Reduce LCP and CLS */
    .hero {
        min-height: 400px !important;
        padding: 40px 20px !important;
    }
    
    .hero-content {
        min-height: 250px !important;
    }
    
    .hero-title {
        font-size: 32px !important;
        min-height: 90px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        min-height: 50px !important;
    }
    
    /* Disable or simplify animations on mobile to improve LCP and TBT */
    .hero-particles {
        display: none; /* Disable on mobile for better performance */
    }
    
    .hero-glow {
        animation-duration: 12s;
        opacity: 0.2; /* Reduce opacity on mobile */
    }
    
    .badge-pulse {
        animation-duration: 3s;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Game Detail */
.game-detail {
    padding: 40px 0;
}

.game-detail-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-detail-content:hover {
    box-shadow: var(--shadow-xl);
}

.game-detail-poster {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.game-detail-poster:hover {
    transform: scale(1.02);
}

.game-detail-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.game-description {
    margin-bottom: 40px;
}

.game-description p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
}

.how-to-play {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border-left: 4px solid var(--blue);
    box-shadow: var(--shadow-sm);
}

.how-to-play h2 {
    margin-bottom: 20px;
    color: var(--deep-blue);
    font-size: 28px;
    font-weight: 700;
}

.how-to-play ul {
    list-style: none;
    padding-left: 0;
}

.how-to-play li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.how-to-play li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

/* Game Iframe Container */
.game-iframe-container {
    margin-top: 50px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.game-iframe-container h2 {
    padding: 25px 35px;
    background: var(--gradient-blue);
    color: var(--white);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-iframe-container h2::before {
    content: '🎮';
    font-size: 32px;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.game-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.site-footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 50px 0 25px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    padding: 4px 0;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
    opacity: 1;
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #92400e;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.footer-section p:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Short Disclaimer Section */
.short-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px 0;
    border-top: 4px solid #f59e0b;
    border-bottom: 4px solid #f59e0b;
    box-shadow: 0 -4px 20px rgba(245, 158, 11, 0.2), 0 4px 20px rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.short-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(245, 158, 11, 0.05) 10px,
        rgba(245, 158, 11, 0.05) 20px
    );
    pointer-events: none;
}

.disclaimer-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #92400e;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.clickable-disclaimer {
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

.clickable-disclaimer:hover {
    color: #78350f;
    background: rgba(217, 119, 6, 0.1);
    transform: scale(1.02);
}

.disclaimer-link {
    color: #d97706;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(217, 119, 6, 0.2);
}

.disclaimer-link:hover {
    color: #b45309;
    text-decoration: none;
    background: rgba(217, 119, 6, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.disclaimer-modal.active {
    display: flex;
}

.disclaimer-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.disclaimer-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.disclaimer-modal-content h2 {
    font-size: 32px;
    color: var(--deep-blue);
    margin: 0 0 25px 0;
    padding: 30px 30px 0 30px;
    font-weight: 700;
}

.disclaimer-modal-text {
    padding: 0 30px 30px 30px;
}

.disclaimer-modal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.disclaimer-modal-text h3 {
    font-size: 20px;
    color: var(--deep-blue);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.disclaimer-agreement {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
    margin-top: 30px !important;
}

.disclaimer-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
}

.disclaimer-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--deep-blue);
    transform: rotate(90deg);
}

.disclaimer-modal-actions {
    padding: 20px 30px 30px 30px;
    display: flex;
    gap: 15px;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
    flex-wrap: wrap;
}

.disclaimer-modal-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .disclaimer-modal-content {
        max-height: 95vh;
        margin: 10px;
    }
    
    .disclaimer-modal-content h2 {
        font-size: 24px;
        padding: 25px 20px 0 20px;
    }
    
    .disclaimer-modal-text {
        padding: 0 20px 20px 20px;
    }
    
    .disclaimer-modal-actions {
        padding: 15px 20px 20px 20px;
        flex-direction: column;
    }
    
    .disclaimer-modal-actions .btn {
        width: 100%;
    }
}


/* Hero Section - Optimized for LCP */
.hero {
    position: relative;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    overflow: hidden;
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    contain: layout style paint;
}

/* Load animations only after page load */
/* Defer heavy animations - Hidden by default for LCP */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none; /* Hidden by default, shown after page load via JS */
    content-visibility: auto;
}

/* Show on desktop after load */
@media (min-width: 769px) {
    .hero-background.loaded {
        display: block;
    }
}

.hero-particles,
.hero-glow {
    content-visibility: auto;
    will-change: transform;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particles 20s linear infinite;
    will-change: transform;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-particles.loaded {
    opacity: 1;
    transition: opacity 0.3s;
}

.hero-glow {
    opacity: 0;
    animation-delay: 0.8s;
}

.hero-glow.loaded {
    opacity: 0.3;
    transition: opacity 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .hero-glow {
        animation: none;
        opacity: 0.3;
    }
}

@keyframes particles {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: glow 8s ease-in-out infinite;
    animation-delay: 0.8s;
    transition: opacity 0.5s;
    pointer-events: none;
}

.hero-glow.loaded {
    opacity: 0.3;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -200px;
    left: -200px;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.hero-glow-3 {
    width: 250px;
    height: 250px;
    background: #ec4899;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge-animated {
    margin-bottom: 20px;
}

.badge-pulse {
    display: inline-block;
    background: #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    min-height: 60px;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-animated:hover .btn-arrow {
    transform: translateX(5px);
}

/* About Platform */
.about-platform {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-platform::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #4b5563;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Unique Features Showcase */
.features-showcase-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    perspective: 1000px;
}

.feature-card-unique {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card-unique:hover::before {
    left: 100%;
}

.feature-card-1 {
    transform: translateY(0) rotate(-2deg);
    animation: float1 6s ease-in-out infinite;
}

.feature-card-2 {
    transform: translateY(20px) rotate(2deg);
    animation: float2 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.feature-card-3 {
    transform: translateY(0) rotate(-1.5deg);
    animation: float3 6s ease-in-out infinite;
    animation-delay: 1s;
}

.feature-card-4 {
    transform: translateY(20px) rotate(1.5deg);
    animation: float4 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(20px) rotate(2deg); }
    50% { transform: translateY(5px) rotate(3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-20px) rotate(-0.5deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(20px) rotate(1.5deg); }
    50% { transform: translateY(0) rotate(2.5deg); }
}

.feature-card-unique:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
    z-index: 10;
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 48px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.feature-card-unique:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    animation: pulse-glow 3s ease-in-out infinite;
}

.feature-card-unique:hover .icon-glow {
    opacity: 1;
    animation: pulse-glow-fast 1s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes pulse-glow-fast {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.feature-card-unique h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.feature-card-unique:hover h3 {
    color: var(--blue);
}

.feature-card-unique p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Responsive for features */
@media (max-width: 1024px) {
    .features-showcase-unique {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card-2,
    .feature-card-4 {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .features-showcase-unique {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-1,
    .feature-card-2,
    .feature-card-3,
    .feature-card-4 {
        transform: translateY(0) rotate(0deg) !important;
        animation: none;
    }
    
    .feature-card-unique {
        padding: 30px 20px;
    }
}

@media (max-width: 360px) {
    .features-showcase-unique {
        gap: 15px;
    }
    
    .feature-card-unique {
        padding: 20px 15px;
    }
}

.feature-icon {
    font-size: 40px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: var(--blue);
}

/* Popular Games */
.popular-games {
    padding: 60px 0;
    background: #f9fafb;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    z-index: 1;
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.game-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Brand Name Styling */
.brand-name {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
}

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(59,130,246,0.1)"/></svg>');
    opacity: 0.5;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--deep-blue);
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* About Main Content */
.about-main-content {
    padding: 80px 0;
    background: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--blue);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.about-text-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-text-block:hover::before {
    opacity: 1;
}

.about-text-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--deep-blue);
}

.text-block-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.about-text-block:hover .text-block-icon {
    transform: scale(1.15) rotate(5deg);
}

.about-text-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--deep-blue);
    font-weight: 700;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin: 0;
}

/* About Features Section */
.about-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
}

.section-title-centered {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--deep-blue);
    font-weight: 700;
}

.features-showcase-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-about {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card-about:hover::after {
    transform: scaleX(1);
}

.feature-card-about:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.feature-icon-wrapper-about {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-about {
    font-size: 52px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.4s;
}

.feature-card-about:hover .feature-icon-about {
    transform: scale(1.2) rotate(15deg);
}

.icon-glow-about {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    animation: pulse-glow-about 4s ease-in-out infinite;
}

.feature-card-about:hover .icon-glow-about {
    opacity: 1;
    animation: pulse-glow-about-fast 1.5s ease-in-out infinite;
}

@keyframes pulse-glow-about {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

@keyframes pulse-glow-about-fast {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.7; }
}

.feature-card-about h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.feature-card-about:hover h3 {
    color: var(--blue);
}

.feature-card-about p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-content-about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--deep-blue);
    font-weight: 700;
}

.cta-content-about p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for About page */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-showcase-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-text h2 {
        font-size: 32px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .about-text-block {
        padding: 30px 20px;
    }
    
    .features-showcase-about {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content-about h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 360px) {
    .about-hero-text h2 {
        font-size: 24px;
    }
    
    .about-text-block {
        padding: 20px 15px;
    }
    
    .features-showcase-about {
        gap: 15px;
    }
}

/* About Content Section (legacy - kept for compatibility) */
.about-content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 50px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4b5563;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.feature-icon-large {
    font-size: 60px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--deep-blue);
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--deep-blue), var(--blue));
    border-radius: 15px;
    color: var(--white);
    margin-top: 50px;
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 18px;
    opacity: 0.95;
}

/* Contact Hero Section */
.contact-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(59,130,246,0.1)"/></svg>');
    opacity: 0.5;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--deep-blue);
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--deep-blue);
    font-weight: 700;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-enhanced {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s;
}

.contact-item-enhanced:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s;
}

.contact-item-enhanced:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.contact-item-content {
    flex-grow: 1;
}

.contact-item-content strong {
    display: block;
    margin-bottom: 10px;
    color: var(--deep-blue);
    font-size: 18px;
    font-weight: 700;
}

.contact-item-content p {
    color: #4b5563;
    margin: 5px 0;
    line-height: 1.7;
    font-size: 15px;
}

.contact-item-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.contact-item-content a:hover {
    color: var(--deep-blue);
    transform: translateX(3px);
}

.contact-note {
    font-size: 13px !important;
    color: var(--text-gray) !important;
    font-style: italic;
    margin-top: 8px !important;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--deep-blue);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--silver-light);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.success-message {
    background: #10b981;
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-message {
    background: #ef4444;
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Fade in animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Games Intro Section */
.games-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.games-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(59,130,246,0.1)"/></svg>');
    opacity: 0.5;
}

.games-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.games-intro-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--deep-blue);
    font-weight: 700;
}

.games-intro-content > p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.games-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.game-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.game-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.stat-icon {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-info {
    text-align: left;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Games Listing Enhanced */
.games-listing {
    padding: 80px 0;
    background: var(--white);
}

.section-title-games {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--deep-blue);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title-games::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.games-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.game-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.game-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    pointer-events: none;
}

.game-card-enhanced:hover::before {
    opacity: 1;
}

.game-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.game-card-inner-enhanced {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.game-poster-enhanced {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
    background: var(--deep-blue);
}

.game-poster-enhanced img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card-enhanced:hover .game-poster-enhanced img {
    transform: scale(1.1);
}

.game-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.game-card-enhanced:hover .game-overlay-enhanced {
    opacity: 0.7;
}

.game-badge-enhanced {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.game-badge-enhanced.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.game-badge-enhanced.popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.game-provider-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card-content-enhanced {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.game-card-content-enhanced h3 {
    margin-bottom: 12px;
    color: var(--deep-blue);
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s;
}

.game-card-enhanced:hover .game-card-content-enhanced h3 {
    color: var(--blue);
}

.game-short-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.game-feature-tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--deep-blue);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.game-card-enhanced:hover .game-feature-tag {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.btn-game-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-game-enhanced svg {
    transition: transform 0.3s;
}

.game-card-enhanced:hover .btn-game-enhanced svg {
    transform: translateX(5px);
}

/* Games Info Section */
.games-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
}

.games-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(5deg);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--deep-blue);
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive for Games page */
@media (max-width: 1024px) {
    .games-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .games-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .games-intro-content h2 {
        font-size: 28px;
    }
    
    .games-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .games-info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card-content-enhanced {
        padding: 20px;
    }
    
    .section-title-games {
        font-size: 28px;
    }
}

@media (max-width: 360px) {
    .games-intro-content h2 {
        font-size: 24px;
    }
    
    .game-card-content-enhanced {
        padding: 15px;
    }
    
    .section-title-games {
        font-size: 24px;
    }
    
    .games-stats {
        gap: 15px;
    }
    
    .game-stat-item {
        padding: 15px 20px;
    }
}

/* Games Listing */
.games-listing {
    padding: 40px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.game-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.game-poster {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    background: var(--deep-blue);
}

.game-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-content {
    padding: 20px;
}

.game-card-content h3 {
    margin-bottom: 12px;
    color: var(--deep-blue);
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s;
}

.game-card:hover .game-card-content h3 {
    color: var(--blue);
}

.game-short-desc {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--gradient-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-game {
    width: 100%;
    text-align: center;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.legal-text h2 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 32px;
}

.legal-text h3 {
    color: var(--deep-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.legal-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4b5563;
}

.legal-text a {
    color: var(--blue);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Performance Optimizations - Already in root, removing duplicate */

/* Responsive Breakpoints: 360px, 768px, 1024px, 1440px */
/* Mobile First - 360px and up */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .logo-img {
        height: 30px !important;
    }
}

/* Tablet - 768px and up */
@media (min-width: 361px) and (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 769px) and (max-width: 1024px) {
    .games-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .games-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content h2 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-info-header h2 {
        font-size: 26px;
    }
    
    .contact-item-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-wrapper {
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 24px;
    }
    
    .legal-text {
        padding: 20px;
    }
    
    .legal-text h2 {
        font-size: 24px;
    }
    
    .legal-text h3 {
        font-size: 20px;
    }
    
    /* Footer Mobile Styles */
    .site-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 25px;
    }
    
    .footer-section {
        text-align: center;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
        width: 100%;
        max-width: 200px;
    }
    
    .footer-section a {
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .footer-section a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(0) translateY(-2px);
    }
    
    .footer-disclaimer {
        text-align: center;
        font-size: 12px;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .footer-section p:last-child {
        text-align: center;
        font-size: 13px;
        margin-top: 15px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .game-detail-content {
        padding: 20px;
    }
    
    .game-iframe-container h2 {
        padding: 15px 20px;
        font-size: 20px;
    }
    
    .game-iframe-wrapper {
        padding-bottom: 75%; /* Taller on mobile */
    }
}

