/* FlowState Gaming Platform Styles */
/* File: solstice/horizon.css */

:root {
    --cyberpunk-violet: #8A2BE2;
    --neon-aqua: #00FFFF;
    --electric-purple: #9400D3;
    --gaming-orange: #FF6B35;
    --dark-cosmos: #0B0B1F;
    --midnight-blue: #1A1A2E;
    --space-gray: #16213E;
    --quantum-white: #F8F8FF;
    --hologram-silver: #C0C0C0;
    --energy-yellow: #FFD700;

    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Exo 2', sans-serif;

    --shadow-deep: 0 14px 28px rgba(138, 43, 226, 0.25), 0 10px 10px rgba(138, 43, 226, 0.22);
    --shadow-medium: 0 7px 14px rgba(0, 255, 255, 0.15);
    --shadow-light: 0 3px 6px rgba(148, 0, 211, 0.1);

    --border-glow: 2px solid var(--neon-aqua);
    --border-subtle: 1px solid var(--space-gray);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--dark-cosmos) 0%, var(--midnight-blue) 50%, var(--space-gray) 100%);
    color: var(--quantum-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Age Verification Banner */
.AgeVerificationBanner {
    background: linear-gradient(90deg, var(--gaming-orange) 0%, var(--energy-yellow) 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.VerificationContent {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
}

.WarningIconContainer {
    flex-shrink: 0;
}

.WarningSymbol {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7482%) hue-rotate(296deg);
}

.DisclaimerTextBlock {
    flex: 1;
}

.MainDisclaimer {
    font-weight: 600;
    color: var(--dark-cosmos);
    font-size: 16px;
    margin-bottom: 4px;
}

.SecondaryNotice {
    font-size: 14px;
    color: var(--midnight-blue);
    font-style: italic;
}

/* Primary Navigation */
.PrimaryNavigation {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    position: sticky;
    top: 64px;
    z-index: 999;
    border-bottom: var(--border-subtle);
}

.NavigationWrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.BrandIdentity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.CompanyLogo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.BrandName {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--cyberpunk-violet), var(--neon-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.StatusIndicators {
    display: flex;
    align-items: center;
}

.SocialGameBadge {
    display: flex;
    gap: 10px;
    align-items: center;
}

.GameTypeLabel, .AgeRestriction, .MoneyDisclaimer {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.GameTypeLabel {
    background: var(--cyberpunk-violet);
    color: var(--quantum-white);
}

.AgeRestriction {
    background: var(--gaming-orange);
    color: var(--quantum-white);
}

.MoneyDisclaimer {
    background: var(--neon-aqua);
    color: var(--dark-cosmos);
}

/* Hero Banner */
.HeroBannerZone {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.HeroBannerZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.HeroContentGrid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 25px;
}

.MainHeroText {
    z-index: 2;
    position: relative;
}

.PrimaryHeading {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--quantum-white) 0%, var(--neon-aqua) 50%, var(--cyberpunk-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeroDescription {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--hologram-silver);
}

.ActionButtonGroup {
    display: flex;
    gap: 20px;
}

.PrimaryActionBtn, .SecondaryActionBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.PrimaryActionBtn {
    background: linear-gradient(135deg, var(--cyberpunk-violet), var(--electric-purple));
    color: var(--quantum-white);
    box-shadow: var(--shadow-deep);
}

.PrimaryActionBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

.SecondaryActionBtn {
    background: transparent;
    color: var(--neon-aqua);
    border: 2px solid var(--neon-aqua);
}

.SecondaryActionBtn:hover {
    background: var(--neon-aqua);
    color: var(--dark-cosmos);
    transform: translateY(-2px);
}

.ButtonIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.SecondaryActionBtn .ButtonIcon {
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.SecondaryActionBtn:hover .ButtonIcon {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7482%) hue-rotate(296deg);
}

.HeroVisualContainer {
    position: relative;
    display: flex;
    justify-content: center;
}

.HeroMainImage {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
    border: var(--border-glow);
}

.FloatingGameElements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.GameElement {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--cyberpunk-violet);
    animation: float 3s ease-in-out infinite;
}

.ElementOne {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.ElementTwo {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.ElementThree {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.ElementIcon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Showcase */
.FeaturesShowcase {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.5) 100%);
}

.ShowcaseContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.SectionTitle {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--quantum-white);
}

.FeatureCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.FeatureCard {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.FeatureCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.FeatureCard:hover::before {
    left: 100%;
}

.FeatureCard:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border-color: var(--neon-aqua);
}

.CardIconWrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cyberpunk-violet), var(--electric-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-medium);
}

.FeatureIcon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.CardTitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--quantum-white);
}

.CardDescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hologram-silver);
}

/* Experience Gallery */
.ExperienceGallery {
    padding: 100px 0;
}

.GalleryWrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.GalleryTitle {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--quantum-white);
}

.GalleryGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    height: 620px;
}

.GalleryItem {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ItemLarge {
    grid-row: span 2;
}

.GalleryItem:hover {
    transform: scale(1.05);
}

.GalleryImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.GalleryItem:hover .GalleryImage {
    transform: scale(1.1);
}

.ItemOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.GalleryItem:hover .ItemOverlay {
    transform: translateY(0);
}

.OverlayTitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--quantum-white);
}

.OverlayText {
    font-size: 14px;
    color: var(--hologram-silver);
}

/* Community Section */
.CommunityHighlight {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(148, 0, 211, 0.1) 0%, transparent 70%);
}

.CommunityContainer {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 25px;
}

.CommunityHeading {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--quantum-white);
}

.CommunityDescription {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--hologram-silver);
}

.CommunityStats {
    display: flex;
    gap: 40px;
}

.StatItem {
    text-align: center;
}

.StatNumber {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-aqua);
    display: block;
    margin-bottom: 8px;
}

.StatLabel {
    font-size: 14px;
    color: var(--hologram-silver);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.CommunityVisualBlock {
    position: relative;
    display: flex;
    justify-content: center;
}

.CommunityImage {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
}

.FloatingInteractionElements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.InteractionBubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-aqua);
    animation: pulse 2s ease-in-out infinite;
}

.BubbleOne {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.BubbleTwo {
    bottom: 25%;
    left: 5%;
    animation-delay: 0.7s;
}

.BubbleThree {
    top: 50%;
    right: -5%;
    animation-delay: 1.4s;
}

.BubbleIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Call to Action */
.CallToActionZone {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--space-gray) 100%);
}

.ActionContainer {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 25px;
}

.ActionHeading {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--quantum-white);
}

.ActionSubtext {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: var(--hologram-silver);
}

.MegaActionButton {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--gaming-orange), var(--energy-yellow));
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-cosmos);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-deep);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.MegaActionButton:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.MegaButtonIcon, .ButtonArrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7482%) hue-rotate(296deg);
}

.ActionImage {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
}

/* Footer */
.SiteFooter {
    background: var(--dark-cosmos);
    padding: 60px 0 20px;
    border-top: var(--border-subtle);
}

.FooterContent {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 25px 40px;
}

.FooterBrand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FooterLogo {
    width: 150px;
    height: 70px;
    border-radius: 10px;

    filter: brightness(0) invert(1);
}

.FooterBrandName {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-aqua);
}

.FooterBrandDesc {
    font-size: 14px;
    color: var(--hologram-silver);
    line-height: 1.6;
}

.FooterSectionTitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--quantum-white);
}

.ContactItem {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--hologram-silver);
}

.ContactIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.DisclaimerText {
    font-size: 13px;
    line-height: 1.6;
    color: var(--hologram-silver);
}

.FooterBottom {
    border-top: var(--border-subtle);
    padding-top: 20px;
}

.FooterBottomContent {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.CopyrightNotice {
    font-size: 14px;
    color: var(--hologram-silver);
}

.FooterSecurityBadges {
    display: flex;
    gap: 20px;
}

.SecurityBadge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--hologram-silver);
}

.SecurityIcon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .HeroContentGrid,
    .CommunityContainer,
    .ActionContainer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .GalleryGrid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
        height: auto;
    }

    .ItemLarge {
        grid-column: span 2;
        grid-row: span 1;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .PrimaryNavigation {
        top: 50px;
    }

    .NavigationWrapper {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .StatusIndicators {
        order: -1;
    }

    .SocialGameBadge {
        flex-wrap: wrap;
        justify-content: center;
    }

    .PrimaryHeading {
        font-size: 36px;
    }

    .ActionButtonGroup {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryActionBtn,
    .SecondaryActionBtn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .FeatureCardsGrid {
        grid-template-columns: 1fr;
    }

    .GalleryGrid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .ItemLarge {
        grid-column: span 1;
        grid-row: span 1;
    }

    .CommunityStats {
        justify-content: center;
        gap: 30px;
    }

    .FooterBottomContent {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .VerificationContent {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .MainDisclaimer {
        font-size: 14px;
    }

    .SecondaryNotice {
        font-size: 12px;
    }

    .PrimaryHeading {
        font-size: 28px;
    }

    .HeroDescription,
    .CommunityDescription,
    .ActionSubtext {
        font-size: 16px;
    }

    .SectionTitle,
    .GalleryTitle {
        font-size: 28px;
    }

    .ActionHeading,
    .CommunityHeading {
        font-size: 32px;
    }

    .CommunityStats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Games Showcase Vitrina */
.GameShowcaseVitrina {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.GameShowcaseVitrina::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.VitrineContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.VitrineHeader {
    text-align: center;
    margin-bottom: 70px;
}

.VitrineTitle {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--quantum-white) 0%, var(--neon-aqua) 50%, var(--cyberpunk-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.VitrineSubtitle {
    font-size: 19px;
    color: var(--hologram-silver);
    margin-bottom: 24px;
    line-height: 1.6;
}

.VitrineAccent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 43, 226, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid var(--cyberpunk-violet);
    backdrop-filter: blur(10px);
}

.AccentIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.AccentText {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--neon-aqua);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.GamesShowcaseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.GameCard {
    background: rgba(22, 33, 62, 0.95);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
}

.GameCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.GameCard:hover::before {
    left: 100%;
}

.GameCard:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.4);
    border-color: var(--neon-aqua);
}

.GameImageWrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.GameImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.GameCard:hover .GameImage {
    transform: scale(1.1);
}

.GameOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.GameCard:hover .GameOverlay {
    opacity: 1;
}

.PlayButton {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gaming-orange), var(--energy-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.GameCard:hover .PlayButton {
    transform: scale(1);
}

.PlayIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7482%) hue-rotate(296deg);
    margin-left: 3px;
}

.GameInfo {
    padding: 24px 20px;
    position: relative;
    z-index: 2;
}

.GameTitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--quantum-white);
    line-height: 1.3;
}

.GameDescription {
    font-size: 15px;
    color: var(--hologram-silver);
    margin-bottom: 16px;
    line-height: 1.5;
}

.GameBadges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.GameBadges span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.PopularBadge {
    background: var(--gaming-orange);
    color: var(--quantum-white);
}

.NewBadge {
    background: var(--energy-yellow);
    color: var(--dark-cosmos);
}

.TrendingBadge {
    background: var(--cyberpunk-violet);
    color: var(--quantum-white);
}

.HotBadge {
    background: linear-gradient(45deg, #FF4757, #FF6B35);
    color: var(--quantum-white);
}

.ExclusiveBadge {
    background: var(--neon-aqua);
    color: var(--dark-cosmos);
}

.ClassicBadge {
    background: var(--hologram-silver);
    color: var(--dark-cosmos);
}

.CategoryBadge {
    background: transparent;
    color: var(--hologram-silver);
    border: 1px solid var(--space-gray);
}

.VitrineFooter {
    text-align: center;
}

.ViewAllGamesBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--cyberpunk-violet);
    border-radius: 30px;
    color: var(--cyberpunk-violet);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ViewAllGamesBtn:hover {
    background: var(--cyberpunk-violet);
    color: var(--quantum-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.ViewAllIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(84%) saturate(6151%) hue-rotate(268deg);
    transition: filter 0.3s ease;
}

.ViewAllGamesBtn:hover .ViewAllIcon {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Responsive для витрины игр */
@media (max-width: 768px) {
    .VitrineTitle {
        font-size: 32px;
    }

    .GamesShowcaseGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .GameImageWrapper {
        height: 180px;
    }

    .VitrineAccent {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .VitrineTitle {
        font-size: 28px;
    }

    .VitrineSubtitle {
        font-size: 16px;
    }

    .GameInfo {
        padding: 20px 16px;
    }

    .GameTitle {
        font-size: 20px;
    }
}

/* Enhanced Footer Styles */
.FooterContent {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 35px;
    padding: 0 25px 40px;
}

.FooterLinks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LegalLinksGroup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.FooterLink {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--hologram-silver);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 6px;
}

.FooterLink:hover {
    color: var(--neon-aqua);
    transform: translateX(5px);
}

.LinkIcon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg);
    transition: filter 0.3s ease;
}

.FooterLink:hover .LinkIcon {
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.ResponsibleGamingSection {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--space-gray);
}

.RegulatorLink {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--cyberpunk-violet);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.RegulatorLink:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(138, 43, 226, 0.3);
}

.RegulatorLogo {
    width: 258px;
    height: 78px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.RegulatorText {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--neon-aqua);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.FooterDisclaimer {
    grid-column: span 1;
}

.DisclaimerContent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.MainDisclaimerText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--quantum-white);
    font-weight: 500;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--gaming-orange);
}

.AgeRestrictionsText {
    font-size: 13px;
    line-height: 1.6;
    color: var(--hologram-silver);
    background: rgba(0, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--neon-aqua);
}

.EnglishDisclaimerText {
    font-size: 12px;
    line-height: 1.6;
    color: var(--hologram-silver);
    font-style: italic;
    opacity: 0.8;
}

.FooterBottomContent {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterBottomLinks {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.BottomLink {
    color: var(--hologram-silver);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.BottomLink:hover {
    color: var(--neon-aqua);
}

.LinkSeparator {
    color: var(--space-gray);
    font-size: 12px;
}

.ResponsibilityText {
    font-size: 13px;
    color: var(--gaming-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.FooterSecurityBadges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.SecurityBadge:last-child {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--gaming-orange);
    padding: 6px 12px;
    border-radius: 15px;
}

.SecurityBadge:last-child .SecurityIcon {
    filter: brightness(0) saturate(100%) invert(65%) sepia(77%) saturate(1945%) hue-rotate(347deg);
}

.SecurityBadge:last-child span {
    color: var(--gaming-orange);
    font-weight: 600;
}

/* Responsive для нового футера */
@media (max-width: 1024px) {
    .FooterContent {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .FooterDisclaimer {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .FooterContent {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .FooterDisclaimer {
        grid-column: span 1;
    }

    .FooterBottomContent {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .FooterBottomLinks {
        justify-content: center;
    }

    .FooterSecurityBadges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .LegalLinksGroup {
        align-items: center;
    }

    .ResponsibleGamingSection {
        display: flex;
        justify-content: center;
    }

    .RegulatorLink {
        max-width: 200px;
    }

    .FooterBottomLinks {
        flex-direction: column;
        gap: 10px;
    }

    .LinkSeparator {
        display: none;
    }
}

.PrivacyPolicySection,
.TermsConditionsSection {margin: 5% 15%;}