/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #1a365d;
    --sunset-orange: #ff6b35;
    --forest-green: #2d5a27;
    --electric-purple: #9333ea;
    --coral-pink: #ff69b4;
    --midnight-black: #0f172a;
    --pearl-white: #f8fafc;
    --golden-yellow: #fbbf24;
    --crimson-red: #dc2626;
    --silver-gray: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--midnight-black);
    background: linear-gradient(135deg, var(--pearl-white) 0%, #e2e8f0 100%);
    overflow-x: hidden
}

/* Disclaimer Banner */
.DisclaimerBanner {
    background: linear-gradient(135deg, var(--crimson-red), #b91c1c);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3)
}

.DisclaimerContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px
}

.WarningIconContainer {
    flex-shrink: 0;
}

.WarningSymbol {
    width: 24px;
    height: 24px;
    filter: invert(1) brightness(2);
}

.DisclaimerTextBlock {
    flex: 1;
}

.DisclaimerMainText {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.DisclaimerSubText {
    font-size: 12px;
    opacity: 0.9;
    font-style: italic;
}

/* Header */
.PrimaryHeader {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: sticky;
    top: 60px;
    z-index: 999;
    padding: 15px 0
}

.HeaderWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.BrandIdentity {
    display: flex;
    justify-content: center;
}

.CompanyLogo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.CompanyLogo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.HeroZone {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--electric-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.HeroZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.ContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.GameTypeIndicator {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.SocialGameTag, .AgeRestriction, .NoRealMoneyTag {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.SocialGameTag {
    background: var(--golden-yellow);
    color: var(--midnight-black);
}

.AgeRestriction {
    background: var(--crimson-red);
    color: white;
}

.NoRealMoneyTag {
    background: var(--forest-green);
    color: white;
}

.MainHeadline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.BrandHighlight {
    background: linear-gradient(45deg, var(--sunset-orange), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeroDescription {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.7;
}

.FeatureHighlights {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.FeatureItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.FeatureIcon {
    width: 20px;
    height: 20px;
    filter: invert(1) brightness(2);
}

.CallToActionArea {
    margin-top: 40px;
}

.PrimaryCTA {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.PrimaryCTA:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.ButtonIcon {
    width: 18px;
    height: 18px;
    filter: invert(1) brightness(2);
    transition: transform 0.3s ease;
}

.PrimaryCTA:hover .ButtonIcon {
    transform: translateX(5px);
}

.HeroMainImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.HeroMainImage:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Features Section */
.ExperienceShowcase {
    padding: 100px 0;
    background: var(--pearl-white);
}

.ShowcaseContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.SectionHeader {
    text-align: center;
    margin-bottom: 70px;
}

.SectionTitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.SectionSubtitle {
    font-size: 1.2rem;
    color: var(--silver-gray);
    max-width: 600px;
    margin: 0 auto;
}

.FeatureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.FeatureCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.FeatureCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.CardImageWrapper {
    position: relative;
    overflow: hidden;
}

.FeatureCardImage {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.FeatureCard:hover .FeatureCardImage {
    transform: scale(1.1);
}

.CardContent {
    padding: 30px;
}

.CardIconBox {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-purple), var(--coral-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.CardIcon {
    width: 28px;
    height: 28px;
    filter: invert(1) brightness(2);
}

.CardTitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.CardDescription {
    font-size: 1rem;
    color: var(--silver-gray);
    line-height: 1.6;
}

/* Community Section */
.CommunityZone {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--ocean-blue) 100%);
    color: white;
}

.CommunityWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.CommunityContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.CommunityHeading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.CommunityDescription {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.CommunityStats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.StatItem {
    display: flex;
    align-items: center;
    gap: 15px;
}

.StatIcon {
    width: 40px;
    height: 40px;
    filter: invert(1) brightness(2);
}

.StatNumber {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-yellow);
}

.StatLabel {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.CommunityImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Innovation Section */
.InnovationHighlight {
    padding: 100px 0;
    background: var(--pearl-white);
}

.InnovationContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.InnovationGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.InnovationMainImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.InnovationTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 25px;
}

.InnovationDescription {
    font-size: 1.1rem;
    color: var(--silver-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.TechFeatures {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.TechFeature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.TechIcon {
    width: 40px;
    height: 40px;
    filter: invert(0.3) sepia(1) saturate(3) hue-rotate(190deg);
    flex-shrink: 0;
}

.TechFeatureTitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.TechFeatureDesc {
    color: var(--silver-gray);
    font-size: 0.95rem;
}

/* Gallery Section */
.ExperienceGallery {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--ocean-blue) 100%);
}

.GalleryContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.GalleryTitle {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.GalleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.GalleryItem {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.GalleryItem:hover {
    transform: scale(1.05);
}

.GalleryImage {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.GalleryOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(147, 51, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.GalleryItem:hover .GalleryOverlay {
    opacity: 1;
}

.OverlayIcon {
    width: 50px;
    height: 50px;
    filter: invert(1) brightness(2);
}

/* Footer */
.SiteFooter {
    background: var(--midnight-black);
    color: white;
    padding: 60px 0 30px;
}

.FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.FooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.FooterLogo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.CompanyDescription {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ContactInfo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ContactItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.ContactIcon {
    width: 18px;
    height: 18px;
    filter: invert(1) brightness(2);
}

.LegalTitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

.LegalText {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.FooterBottom {
    border-top: 1px solid rgba(100, 116, 139, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.CopyrightText {
    font-size: 0.9rem;
    opacity: 0.7;
}

.FooterDisclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--crimson-red);
    font-weight: 500;
}

.DisclaimerIcon {
    width: 16px;
    height: 16px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(340deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ContentGrid, .CommunityContent, .InnovationGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .MainHeadline {
        font-size: 2.8rem;
    }

    .FeatureGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .DisclaimerContent {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .MainHeadline {
        font-size: 2.2rem;
    }

    .SectionTitle {
        font-size: 2.2rem;
    }

    .FeatureHighlights {
        justify-content: center;
    }

    .CommunityStats {
        justify-content: center;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .FooterBottom {
        flex-direction: column;
        text-align: center;
    }

    .GalleryGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .HeroZone, .ExperienceShowcase, .CommunityZone, .InnovationHighlight, .ExperienceGallery {
        padding: 60px 0;
    }

    .MainHeadline {
        font-size: 1.8rem;
    }

    .SectionTitle {
        font-size: 1.8rem;
    }

    .GameTypeIndicator {
        justify-content: center;
    }

    .FeatureCard {
        margin: 0 10px;
    }
}

/* Games Showcase Section */
.GamesShowcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--ocean-blue) 50%, var(--electric-purple) 100%);
    position: relative;
    overflow: hidden;
}

.GamesShowcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.GamesContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.GamesShowcase .SectionTitle {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.GamesShowcase .SectionSubtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 60px;
}

.GamesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.GameCard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.GameCard:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--sunset-orange);
}

.GameImageWrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.GameImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.GameCard:hover .GameImage {
    transform: scale(1.1);
}

.GameOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.GameCard:hover .GameOverlay {
    opacity: 1;
}

.PlayButton {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.GameCard:hover .PlayButton {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.PlayIcon {
    width: 35px;
    height: 35px;
    filter: invert(1) brightness(2);
}

.GameInfo {
    padding: 25px;
    text-align: center;
}

.GameTitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.GameDescription {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.GameLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.GameLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
}

.LinkIcon {
    width: 14px;
    height: 14px;
    filter: invert(1) brightness(2);
    transition: transform 0.3s ease;
}

.GameLink:hover .LinkIcon {
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .GamesGrid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .GameImageWrapper {
        height: 180px;
    }

    .GameInfo {
        padding: 20px;
    }

    .GameTitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .GamesGrid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Footer Updates */
.FooterContent {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.FooterLinks {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.FooterLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.FooterLink:hover {
    color: var(--golden-yellow);
    transform: translateX(5px);
}

.FooterLink::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--sunset-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.RegulatorSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.RegulatorLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.RegulatorLink:hover {
    transform: translateY(-3px);
    border-color: var(--golden-yellow);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.RegulatorLogo {
    width: 150px;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.RegulatorLink:hover .RegulatorLogo {
    filter: brightness(1.1);
}

.RegulatorText {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.FooterDisclaimer span {
    font-size: 0.8rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .FooterContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .RegulatorSection {
        align-items: flex-start;
        text-align: left;
    }

    .RegulatorLink {
        flex-direction: row;
        align-items: center;
        text-align: left;
        width: 100%;
    }

    .RegulatorLogo {
        width: 60px;
    }

    .FooterLinks {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .FooterLinks {
        flex-direction: column;
        gap: 12px;
    }

    .RegulatorLink {
        flex-direction: column;
        text-align: center;
    }

    .FooterDisclaimer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .FooterDisclaimer span {
        font-size: 0.75rem;
    }
}

.GamePageHeader {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--ocean-blue) 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.GameHeaderContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.GamePageLogo {
    height: 45px;
    filter: brightness(0) invert(1);
    width: auto;
    transition: transform 0.3s ease;
}

.GamePageLogo:hover {
    transform: scale(1.05);
}

.BackToHomeLink {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.BackToHomeLink:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.BackIcon {
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(2);
}

.GameHeroSection {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--electric-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.GameHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.GameInfoContent h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--golden-yellow), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.GameDescription {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.GameTags {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.GameTag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.PlayNowButton {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

.PlayNowButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.GameHeroImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.GameContainerSection {
    padding: 80px 0;
    background: var(--pearl-white);
    min-height: 100vh;
}

.GameContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.GameFrameWrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    margin-bottom: 40px;
}

.GameIframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.GameInfoSection {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.GameInfoTitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 20px;
    text-align: center;
}

.GameInfoText {
    font-size: 1.1rem;
    color: var(--silver-gray);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ResponsibleGamingNotice {
    background: linear-gradient(135deg, var(--crimson-red), #b91c1c);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.ResponsibleGamingNotice h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ResponsibleGamingNotice p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .GameHeroContainer {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .GameInfoContent h1 {
        font-size: 2.2rem;
    }

    .GameHeaderContent {
        flex-direction: column;
        gap: 15px;
    }

    .GameIframe {
        height: 450px;
    }

    .GameFrameWrapper {
        padding: 20px;
    }

    .GameInfoSection {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .GameContainerSection {
        padding: 40px 0;
    }

    .GameIframe {
        height: 350px;
    }

    .GameTags {
        justify-content: center;
    }
}

.PrivacySection,
.TermsSection {
    margin: 5% 15%;
}