/* CSS Variables - Dark Tech Futuristic Palette */
:root {
    /* Primary Colors - Neon Cyan/Blue */
    --color-primary: #00D9FF;
    --color-primary-light: #33E1FF;
    --color-primary-dark: #00B8D9;
    --color-secondary: #7B2CBF;
    --color-secondary-light: #9D4EDD;
    --color-secondary-dark: #5A189A;
    
    /* Accent Colors */
    --color-accent: #FF006E;
    --color-accent-light: #FF3399;
    --color-accent-dark: #CC0059;
    
    /* Background Colors - Dark Tech */
    --color-bg-primary: #0A0E27;
    --color-bg-secondary: #141B3D;
    --color-bg-gradient-start: #0D1229;
    --color-bg-gradient-end: #1A1F3A;
    --color-bg-card: rgba(20, 27, 61, 0.6);
    --color-bg-dark: #050811;
    
    /* Text Colors */
    --color-text-primary: #E8F0FF;
    --color-text-secondary: #B8C5E0;
    --color-text-light: #8A9BB8;
    --color-text-inverse: #FFFFFF;
    
    /* Border & Shadow - Neon Glow */
    --color-border: rgba(0, 217, 255, 0.2);
    --color-border-dark: rgba(0, 217, 255, 0.5);
    --shadow-sm: 0 4px 20px rgba(0, 217, 255, 0.15), 0 0 10px rgba(0, 217, 255, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 217, 255, 0.25), 0 0 20px rgba(0, 217, 255, 0.15);
    --shadow-lg: 0 12px 40px rgba(0, 217, 255, 0.3), 0 0 30px rgba(0, 217, 255, 0.2);
    --shadow-xl: 0 16px 50px rgba(0, 217, 255, 0.4), 0 0 40px rgba(0, 217, 255, 0.25);
    --glow-primary: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
    --glow-accent: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius - Rounded Modern */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
    letter-spacing: 0.02em;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--color-border-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: var(--spacing-lg);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-character {
    width: 300px;
    height: 400px;
    object-fit: contain;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-primary);
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.hero-character:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-primary), 0 0 60px rgba(0, 217, 255, 0.4);
    border-color: var(--color-primary-light);
}

/* FAQ Section */
.faq-section {
    background: var(--color-bg-primary);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px var(--color-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.faq-item:hover {
    box-shadow: var(--shadow-md), var(--glow-primary);
    transform: translateY(-4px);
    border-color: var(--color-primary);
    background: rgba(0, 217, 255, 0.1);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-weight: 300;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(0, 217, 255, 0.1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    padding: var(--spacing-2xl) 0;
    color: var(--color-text-inverse);
    position: relative;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    box-shadow: inset 0 0 50px rgba(0, 217, 255, 0.1);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        );
    opacity: 0.5;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(0, 217, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* About Section */
.about-section {
    background: var(--color-bg-secondary);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    box-shadow: 0 0 10px var(--color-secondary);
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.about-character {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(123, 44, 191, 0.3);
    background: rgba(123, 44, 191, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.about-character:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(123, 44, 191, 0.5);
    border-color: var(--color-secondary-light);
}

.about-content {
    padding-left: var(--spacing-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Games Section */
.games-section {
    background: var(--color-bg-primary);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px var(--color-primary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.game-card {
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2), 0 0 40px rgba(0, 217, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.4),
        0 0 60px rgba(0, 217, 255, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-card:hover::before {
    opacity: 0.6;
}

.game-card:hover::after {
    opacity: 1;
}

/* Special hover effect for stormforged card */
.game-card#stormforged:hover {
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.4),
        0 0 60px rgba(255, 0, 110, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-card#stormforged:hover::before {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary), var(--color-primary));
}

.game-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.game-card:hover .game-image {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.02);
}

.game-title {
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(20, 27, 61, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    margin: 0;
    position: relative;
    z-index: 2;
}

.game-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}

.play-button {
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(90deg, #00D9FF 0%, #7B2CBF 100%);
    color: var(--color-text-inverse);
    border: none;
    border-radius: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.3);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    background-position: left center;
    z-index: 2;
}

.play-button::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-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #33E1FF 0%, #9D4EDD 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.play-button:hover {
    transform: translateY(0);
    background-position: right center;
    box-shadow: 
        inset 0 0 30px rgba(0, 217, 255, 0.5),
        0 0 20px rgba(0, 217, 255, 0.4);
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover::after {
    opacity: 1;
}

.play-button:active {
    transform: scale(0.98);
}

/* Important Information Section */
.info-section {
    background: linear-gradient(to bottom, var(--color-bg-gradient-start) 0%, var(--color-bg-secondary) 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    box-shadow: 0 0 10px var(--color-accent);
}

.info-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.age-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.age-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.age-icon-image {
    width: 120px;
    height: auto;
    object-fit: contain;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    box-shadow: var(--glow-accent);
    background: rgba(255, 0, 110, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.age-icon-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-accent), 0 0 40px rgba(255, 0, 110, 0.6);
}

.info-intro {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
    font-weight: 400;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.info-card {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), var(--glow-primary);
    border-color: var(--color-primary);
    background: rgba(0, 217, 255, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    position: relative;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.info-card:hover .info-icon::before {
    opacity: 0.5;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    font-weight: 400;
}

.info-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-card a:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-primary);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px var(--color-primary);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text-primary);
    background: rgba(0, 217, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2), var(--glow-primary);
    background: rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-inverse);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md), var(--glow-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--glow-primary), 0 0 40px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:active {
    transform: translateY(-1px) scale(1);
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    border-top: 2px solid var(--color-border-dark);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.footer-play-responsible {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.footer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--color-primary);
    box-shadow: var(--glow-primary);
    transition: all 0.4s ease;
}

.footer-icon:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--glow-primary), 0 0 40px rgba(0, 217, 255, 0.8);
}

.footer-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.footer-play-responsible h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.footer-play-responsible p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-inverse);
    opacity: 0.9;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .about-layout {
        grid-template-columns: 300px 1fr;
        gap: var(--spacing-md);
    }
    
    .about-content {
        padding-left: var(--spacing-md);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    /* Header Responsive */
    .header-container {
        padding: 0 var(--spacing-sm);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(20px);
    }
    
    .header-nav.mobile-menu-open {
        max-height: 500px;
        opacity: 1;
        padding: var(--spacing-md);
    }
    
    .header-nav.mobile-menu-open .nav-link {
        width: 100%;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
    }
    
    .header-nav.mobile-menu-open .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .burger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        align-items: stretch;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: auto;
        position: relative;
        z-index: 1001;
        padding: 4px 0;
        flex-shrink: 0;
    }
    
    .burger-menu .burger-line {
        display: block !important;
        width: 100%;
        height: 3px;
        background: var(--color-primary) !important;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
        transform-origin: center;
        margin: 2px 0;
        box-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logos {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .burger-menu {
        display: flex !important;
        width: 28px;
        height: 28px;
    }
}

/* Main Header Navigation */
.main-header {
    background: rgba(10, 14, 39, 0.8);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.logo-link:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-xs) 0;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--color-primary);
}

.nav-link:hover {
    color: var(--color-primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.play-button-header {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-inverse);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm), var(--glow-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.play-button-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-primary), 0 0 30px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
}

.play-button-header:active {
    transform: translateY(0);
}

/* Burger Menu - Hidden on Desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    margin: 2px 0;
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.burger-menu:hover .burger-line {
    background: var(--color-primary-light);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* Privacy Policy Page Styles */
.page-header {
    background: rgba(10, 14, 39, 0.8);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.main-nav {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.logo:hover {
    color: var(--color-primary-light);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.policy-section {
    background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
    padding: var(--spacing-2xl) 0;
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: var(--spacing-2xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.policy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.policy-date {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.policy-intro {
    background: rgba(0, 217, 255, 0.1);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.policy-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 400;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.policy-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    backdrop-filter: blur(10px);
}

.policy-item:hover {
    box-shadow: var(--shadow-md), var(--glow-primary);
    transform: translateX(8px);
    border-left-color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(0, 217, 255, 0.1);
}

.policy-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-inverse);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--glow-primary);
    transition: all 0.4s ease;
}

.policy-item:hover .policy-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-primary), 0 0 30px rgba(0, 217, 255, 0.6);
}

.policy-text {
    flex: 1;
}

.policy-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.policy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 400;
}

.policy-text p strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.policy-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.policy-text a:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

@media (max-width: 1024px) {
    .policy-content {
        padding: var(--spacing-lg);
    }
    
    .policy-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .policy-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .policy-text h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: var(--spacing-md);
    }
    
    .policy-intro {
        padding: var(--spacing-md);
    }
    
    .policy-item {
        padding: var(--spacing-md);
    }
}

/* Game Page Styles */
.game-page-section {
    background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
    min-height: calc(100vh - 200px);
    padding: var(--spacing-lg) 0;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.game-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-text-primary);
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.back-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-link svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

.back-link:hover {
    color: var(--color-primary-light);
    transform: translateX(-6px);
    box-shadow: var(--shadow-md), var(--glow-primary);
    border-color: var(--color-primary-light);
    background: rgba(0, 217, 255, 0.2);
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .game-page-section {
        padding: var(--spacing-md) 0;
    }
    
    .game-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .game-page-title {
        font-size: 2rem;
    }
    
    .game-iframe-wrapper {
        padding-bottom: 75%; /* Taller aspect ratio for mobile */
    }
}

@media (max-width: 480px) {
    .game-container {
        padding: 0 var(--spacing-sm);
    }
    
    .game-header {
        margin-bottom: var(--spacing-md);
    }
    
    .back-link {
        width: 100%;
        justify-content: center;
    }
}
