/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-violet: #6366f1;
    --secondary-purple: #8b5cf6;
    --accent-gold: #f59e0b;
    --dark-charcoal: #1f2937;
    --light-slate: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-soft: #e2e8f0;
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    --transition-base: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-slate);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Disclaimer Banner */
.DisclaimerBanner {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.DisclaimerContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.DisclaimerIcon .WarningIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Header Styles */
.MainHeader {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
}

.HeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LogoBrand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.BrandLogo {
    width: 82px;
    height: 42px;
    border-radius: var(--radius-small);
}

.BrandName {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeaderActions {
    display: flex;
    gap: 12px;
}

.ActionButton {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 14px;
}

.PrimaryBtn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-soft);
}

.PrimaryBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.SecondaryBtn {
    background: var(--light-slate);
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
}

.SecondaryBtn:hover {
    background: var(--dark-charcoal);
    color: white;
}

.BtnIcon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.SecondaryBtn .BtnIcon {
    filter: none;
}

.SecondaryBtn:hover .BtnIcon {
    filter: brightness(0) invert(1);
}

/* Hero Section */
.HeroZone {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.HeroZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="1" fill="%23e2e8f0" fill-opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.HeroContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.GameNotice {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.HeroTitle {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeroDescription {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.HeroActions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.LaunchButton, .ExploreButton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 16px;
}

.LaunchButton {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.LaunchButton:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.ExploreButton {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-violet);
}

.ExploreButton:hover {
    background: var(--primary-violet);
    color: white;
}

.LaunchIcon, .ExploreIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.ExploreButton .ExploreIcon {
    filter: none;
}

.ExploreButton:hover .ExploreIcon {
    filter: brightness(0) invert(1);
}

.HeroVisual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.VisualCard {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-base);
}

.VisualCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.MainCard {
    grid-column: 1 / -1;
    grid-row: 1;
}

.SecondCard {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(40px);
}

.FeatureImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Experience Grid */
.ExperienceGrid {
    padding: 100px 0;
    background: white;
}

.GridContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.SectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.SectionTitle {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.SectionSubtext {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.FeatureCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.FeatureCard {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-large);
    border: 1px solid var(--border-soft);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.FeatureCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
}

.FeatureCard:hover::before {
    opacity: 0.05;
}

.FeatureCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-violet);
}

.CardIcon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.FeatureIcon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.CardTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.CardText {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Community Showcase */
.CommunityShowcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.ShowcaseContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ShowcaseContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ShowcaseTitle {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.ShowcaseText {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ShowcaseFeatures {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ShowcaseFeature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.ShowcaseFeature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.ShowcaseIcon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(240deg) saturate(1.5);
}

.VisualGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.CommunityImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-base);
}

.CommunityImage:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

/* Benefits Section */
.BenefitsSection {
    padding: 100px 0;
    background: white;
}

.BenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.BenefitsHeader {
    text-align: center;
    margin-bottom: 60px;
}

.BenefitsTitle {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.BenefitsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.BenefitItem {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-large);
    transition: var(--transition-base);
    border: 1px solid var(--border-soft);
}

.BenefitItem:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    background: white;
}

.BenefitIcon {
    width: 56px;
    height: 56px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.BenefitIconImg {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.BenefitTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.BenefitText {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Call to Action */
.CallToAction {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.CallToAction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" fill-opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.CtaContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.CtaContent {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.CtaTitle {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.CtaText {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.CtaActions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.CtaButton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 16px;
}

.CtaButton.Primary {
    background: white;
    color: var(--primary-violet);
}

.CtaButton.Primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.CtaButton.Secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.CtaButton.Secondary:hover {
    background: white;
    color: var(--primary-violet);
}

.CtaIcon {
    width: 20px;
    height: 20px;
}

.CtaButton.Primary .CtaIcon {
    filter: hue-rotate(240deg);
}

.CtaButton.Secondary .CtaIcon {
    filter: brightness(0) invert(1);
}

.CtaButton.Secondary:hover .CtaIcon {
    filter: hue-rotate(240deg);
}

.CtaImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
}

/* Footer */
.MainFooter {
    background: var(--dark-charcoal);
    color: white;
    padding: 60px 0 20px;
}

.FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.FooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.FooterBrand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.FooterLogo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-small);
}

.FooterBrandName {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.FooterDescription {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 14px;
}

.FooterSectionTitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.ContactInfo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ContactItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #9ca3af;
}

.ContactIcon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    margin-top: 2px;
    flex-shrink: 0;
}

.FooterLinks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FooterLink {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.FooterLink:hover {
    color: white;
}

.FooterBottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.LegalNotice {
    padding: 16px;
    background: #374151;
    border-radius: var(--radius-medium);
}

.LegalText {
    font-size: 12px;
    color: #d1d5db;
    line-height: 1.5;
    text-align: center;
}

.Copyright {
    text-align: center;
}

.Copyright p {
    font-size: 12px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .HeroContent,
    .ShowcaseContent,
    .CtaContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .HeroTitle {
        font-size: 36px;
    }

    .SectionTitle,
    .BenefitsTitle,
    .CtaTitle {
        font-size: 28px;
    }

    .ShowcaseTitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .HeaderContainer {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .HeaderActions {
        width: 100%;
        justify-content: center;
    }

    .HeroZone {
        padding: 60px 0;
    }

    .HeroTitle {
        font-size: 28px;
    }

    .HeroActions {
        flex-direction: column;
    }

    .LaunchButton,
    .ExploreButton {
        justify-content: center;
        width: 100%;
    }

    .FeatureCards {
        grid-template-columns: 1fr;
    }

    .BenefitsGrid {
        grid-template-columns: 1fr;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .VisualGrid {
        grid-template-columns: 1fr;
    }

    .HeroVisual {
        grid-template-columns: 1fr;
    }

    .SecondCard {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container,
    .HeaderContainer,
    .GridContainer,
    .ShowcaseContainer,
    .BenefitsContainer,
    .CtaContainer,
    .FooterContainer {
        padding: 0 16px;
    }

    .DisclaimerContent {
        padding: 0 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .HeroTitle {
        font-size: 24px;
    }

    .SectionTitle,
    .BenefitsTitle,
    .CtaTitle {
        font-size: 22px;
    }

    .ActionButton {
        font-size: 13px;
        padding: 8px 16px;
    }

    .CtaActions {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.FeatureCard,
.BenefitItem,
.ShowcaseFeature {
    animation: fadeInUp 0.6s ease-out;
}

.FeatureCard:nth-child(2) {
    animation-delay: 0.1s;
}

.FeatureCard:nth-child(3) {
    animation-delay: 0.2s;
}

/* Games Showcase */
.GamesShowcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.GamesShowcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" fill-opacity="0.1"/><circle cx="10" cy="40" r="0.5" fill="white" fill-opacity="0.15"/><circle cx="40" cy="10" r="0.8" fill="white" fill-opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.GamesContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.GamesHeader {
    text-align: center;
    margin-bottom: 60px;
}

.GamesTitle {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.GamesSubtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.GamesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.GameCard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.GameCard:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.GameImageWrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.GameImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.GameCard:hover .GameImage {
    transform: scale(1.1);
}

.GameOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.GameCard:hover .GameOverlay {
    opacity: 1;
}

.PlayButton {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.PlayButton:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.PlayIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    margin-left: 3px;
}

.GameInfo {
    padding: 24px;
}

.GameTitle {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.GameDescription {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.GameLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
    padding: 8px 0;
}

.GameLink:hover {
    color: white;
    transform: translateX(4px);
}

.LinkIcon {
    width: 16px;
    height: 16px;
    filter: hue-rotate(35deg) saturate(1.5);
    transition: var(--transition-base);
}

.GameLink:hover .LinkIcon {
    filter: brightness(0) invert(1);
    transform: translateX(4px);
}

/* Responsive adjustments for games section */
@media (max-width: 768px) {
    .GamesTitle {
        font-size: 28px;
    }

    .GamesGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .GameImageWrapper {
        height: 180px;
    }

    .PlayButton {
        width: 56px;
        height: 56px;
    }

    .PlayIcon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .GamesShowcase {
        padding: 60px 0;
    }

    .GameInfo {
        padding: 20px;
    }

    .GameImageWrapper {
        height: 160px;
    }
}

/* Footer Links */
.FooterLinks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FooterLink {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
    padding: 4px 0;
}

.FooterLink:hover {
    color: white;
    text-decoration: underline;
}

/* Responsible Gaming Section */
.ResponsibleGaming {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 40px 0 20px;
}

.ResponsibleContent {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ResponsibleText {
    flex: 1;
    min-width: 300px;
}

.ResponsibleText p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.ResponsibleText strong {
    color: #fbbf24;
    font-weight: 700;
}

.ResponsibleLogo {
    flex-shrink: 0;
}

.RegulatorLink {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #9ca3af;
    transition: var(--transition-base);
    padding: 12px 16px;
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.RegulatorLink:hover {
    color: white;
    border-color: #6b7280;
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.RegulatorImage {
    width: 172px;
    height: 102px;
    filter: brightness(0.8);
}

.RegulatorLink:hover .RegulatorImage {
    filter: brightness(1);
}

.RegulatorText {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .FooterContent {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ResponsibleContent {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .ResponsibleText {
        min-width: auto;
    }

    .RegulatorLink {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ResponsibleGaming {
        padding: 16px;
        margin: 20px 0;
    }

    .ResponsibleText p {
        font-size: 13px;
    }

    .RegulatorLink {
        padding: 10px 14px;
    }

    .RegulatorImage {
        width: 28px;
        height: 28px;
    }

    .RegulatorText {
        font-size: 13px;
    }
}