/* WarmCode Gaming Platform Styles */

:root {
    --flame-red: #e63946;
    --whisper-pink: #fdeaeb;
    --crimson-depth: #c8252f;
    --forest-sage: #2d5016;
    --sage-mist: #e8f5e8;
    --sunset-amber: #f77f00;
    --amber-glow: #fcf4e8;
    --ocean-teal: #219ebc;
    --teal-whisper: #e8f7fa;
    --midnight-slate: #2f3349;
    --silver-cloud: #f1f3f4;
    --warning-gold: #ffd60a;
    --success-emerald: #06d6a0;
    --info-sapphire: #0077b6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: var(--midnight-slate);
    background: linear-gradient(135deg, var(--whisper-pink) 0%, var(--silver-cloud) 100%);
    overflow-x: hidden;
}

/* Age Disclaimer Banner */
.age-disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, var(--warning-gold), var(--sunset-amber));
    color: var(--midnight-slate);
    padding: 13px 21px;
    z-index: 9999;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age-disclaimer-banner.active {
    transform: translateY(0);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 13px;
    font-size: 15px;
    font-weight: 600;
}

.warning-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(2000%) hue-rotate(210deg);
}

.dismiss-banner {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

.dismiss-banner:hover {
    background-color: rgba(0,0,0,0.1);
}

.dismiss-banner img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(2000%) hue-rotate(210deg);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    object-fit: cover;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--flame-red);
    letter-spacing: -0.5px;
}

.navigation-menu {
    display: flex;
    gap: 34px;
}

.nav-link {
    text-decoration: none;
    color: var(--midnight-slate);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 21px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--whisper-pink), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--flame-red);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--whisper-pink);
}

.mobile-menu-toggle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(2000%) hue-rotate(210deg);
}

/* Hero Section */
.hero-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 34px 80px;
    background: linear-gradient(135deg, var(--whisper-pink) 0%, rgba(253, 234, 235, 0.7) 50%, var(--silver-cloud) 100%);
    position: relative;
    overflow: hidden;
}

.hero-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    animation: floatRotate 20s linear infinite;
}

@keyframes floatRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 67px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--midnight-slate);
    line-height: 1.1;
    margin-bottom: 21px;
    background: linear-gradient(135deg, var(--midnight-slate), var(--flame-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-type-notice {
    margin-bottom: 27px;
}

.social-game-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--flame-red), var(--sunset-amber));
    color: white;
    padding: 8px 21px;
    border-radius: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--midnight-slate);
    margin-bottom: 42px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 32px;
    border: none;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: linear-gradient(135deg, var(--flame-red), var(--sunset-amber));
    color: white;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.primary-button::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.6s ease;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
}

.secondary-button {
    background: var(--silver-cloud);
    color: var(--midnight-slate);
    border: 2px solid var(--flame-red);
}

.secondary-button:hover {
    background: var(--flame-red);
    color: white;
    transform: translateY(-3px);
}

.primary-button img, .secondary-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.secondary-button img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(2000%) hue-rotate(210deg);
    transition: filter 0.3s ease;
}

.secondary-button:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 34px;
    height: 34px;
    opacity: 0.7;
}

.float-element img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(17%) sepia(95%) saturate(7475%) hue-rotate(353deg);
}

.element-1 {
    top: 15%;
    right: 10%;
    animation: floatUp 3.2s ease-in-out infinite;
}

.element-2 {
    bottom: 20%;
    left: 15%;
    animation: floatUp 2.8s ease-in-out infinite reverse;
}

.element-3 {
    top: 50%;
    right: -10%;
    animation: floatUp 3.5s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
}

.section-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--midnight-slate);
    margin-bottom: 21px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--flame-red), var(--sunset-amber));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--midnight-slate);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
}

.feature-card {
    background: var(--silver-cloud);
    padding: 42px 28px;
    border-radius: 21px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--whisper-pink), transparent, var(--sage-mist));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--flame-red);
}

.feature-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--flame-red), var(--sunset-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 27px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon img {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--midnight-slate);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--midnight-slate);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Visual Gallery */
.visual-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-mist) 0%, var(--amber-glow) 100%);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.gallery-item {
    position: relative;
    border-radius: 21px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 34px 21px 21px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.community-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--midnight-slate);
    opacity: 0.9;
    margin-bottom: 42px;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-bottom: 42px;
}

.community-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
}

.community-feature img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(95%) saturate(7475%) hue-rotate(353deg);
}

.community-feature span {
    font-size: 16px;
    color: var(--midnight-slate);
    font-weight: 500;
}

.join-button {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--ocean-teal), var(--info-sapphire));
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 158, 188, 0.4);
}

.join-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.community-image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--midnight-slate), var(--crimson-depth));
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 42px;
}

.stat-item {
    text-align: center;
    padding: 34px 21px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.stat-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 11px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--silver-cloud);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.contact-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--midnight-slate);
    opacity: 0.9;
    margin-bottom: 42px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(95%) saturate(7475%) hue-rotate(353deg);
    margin-top: 3px;
}

.contact-item span {
    font-size: 16px;
    color: var(--midnight-slate);
    line-height: 1.5;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Footer */
.site-footer {
    background: var(--midnight-slate);
    color: white;
    padding: 67px 0 34px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 67px;
    margin-bottom: 54px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.footer-brand-logo {
    width: 160px;
    height: 140px;
    filter: brightness(0) invert(1);
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--flame-red);
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--flame-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-link:hover {
    opacity: 1;
    color: var(--flame-red);
    transform: translateX(5px);
}

.responsible-gaming {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 11px;
    border-left: 4px solid var(--warning-gold);
}

.regulator-info {
    display: flex;
    align-items: center;
}

.regulator-link {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: white;
    padding: 13px 21px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    transition: all 0.3s ease;
}

.regulator-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.regulator-logo {
    width: 152px;
    height: 32px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
}

.footer-disclaimer {
    flex: 1;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-copyright p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 21px;
    }

    .navigation-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-showcase {
        padding: 100px 21px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-container {
        padding: 0 21px;
    }

    .section-title {
        font-size: 36px;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 21px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }

    .banner-content {
        font-size: 13px;
        padding: 0 13px;
    }

    .banner-content span {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-showcase {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 16px;
    }
}

/* Games Showcase Styles */
.games-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight-slate) 0%, var(--crimson-depth) 100%);
    position: relative;
    overflow: hidden;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(247, 127, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.games-showcase .section-title,
.games-showcase .section-subtitle {
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 42px;
    margin-bottom: 67px;
    position: relative;
}

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 21px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 50%,
    rgba(247, 127, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-13px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--flame-red);
}

.game-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-card:hover .game-image {
    transform: scale(1.1) rotate(1deg);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(230, 57, 70, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.game-card:hover .play-button {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.9);
}

.play-button img {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter 0.3s ease;
}

.game-card:hover .play-button img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(95%) saturate(7475%) hue-rotate(353deg);
}

.game-info {
    padding: 27px;
    color: white;
}

.game-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 13px;
    color: white;
    transition: color 0.3s ease;
}

.game-card:hover .game-title {
    color: var(--flame-red);
}

.game-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 21px;
}

.game-stats {
    display: flex;
    gap: 27px;
    margin-bottom: 21px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stat-item img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(93%) saturate(1352%) hue-rotate(3deg);
}

.play-link {
    display: flex;
    align-items: center;
    gap: 11px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 13px 21px;
    background: linear-gradient(45deg, var(--flame-red), var(--sunset-amber));
    border-radius: 11px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.play-link::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.6s ease;
}

.play-link:hover::before {
    left: 100%;
}

.play-link:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.play-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: transform 0.3s ease;
}

.play-link:hover img {
    transform: translateX(3px);
}

.games-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 42px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.game-indicators {
    display: flex;
    gap: 13px;
}

.indicator {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--flame-red);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .game-card {
        max-width: 100%;
    }

    .games-navigation {
        gap: 21px;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
    }
}