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

:root {
    --primary-bg: #0b0f1a;
    --fire-orange: #ff6600;
    --ice-blue: #1fc8db;
    --gold-glow: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #b8c2d9;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(255, 215, 0, 0.3);
    --spacing-unit: 8px;
    --magic-purple: #8b5cf6;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--primary-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: calc(var(--spacing-unit) * 2) 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing-unit) * 4);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold-glow);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fire-orange), var(--ice-blue));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-bg) 0%, 
        rgba(255, 102, 0, 0.1) 25%, 
        rgba(31, 200, 219, 0.1) 75%, 
        var(--primary-bg) 100%);
}

.fire-particles, .ice-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fire-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ice-particles::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(31, 200, 219, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatSymbol 10s ease-in-out infinite;
}

.symbol-1 { top: 15%; left: 20%; animation-delay: 0s; }
.symbol-2 { top: 25%; right: 15%; animation-delay: 2s; }
.symbol-3 { bottom: 30%; left: 15%; animation-delay: 4s; }
.symbol-4 { bottom: 20%; right: 25%; animation-delay: 6s; }
.symbol-5 { top: 40%; left: 50%; animation-delay: 8s; }

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
    background: linear-gradient(45deg, var(--fire-orange), var(--gold-glow), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 4);
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.cta-button {
    position: relative;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 6);
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    border: none;
    border-radius: calc(var(--spacing-unit) * 6);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Game Categories Section */
.game-categories {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(255, 102, 0, 0.03);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.category-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.fire-theme::before {
    background: linear-gradient(90deg, var(--fire-orange), #ff8800);
}

.ice-theme::before {
    background: linear-gradient(90deg, var(--ice-blue), #00d4ff);
}

.magic-theme::before {
    background: linear-gradient(90deg, var(--magic-purple), #a855f7);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.6;
}

.category-games {
    font-size: 0.9rem;
    color: var(--gold-glow);
    font-weight: 500;
}

/* Games Section */
.games-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(11, 15, 26, 0.95) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.game-card {
    background: var(--card-bg);
    border-radius: calc(var(--spacing-unit) * 2);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: calc(var(--spacing-unit) * 2);
    padding: 2px;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: calc(var(--spacing-unit) * 2);
    right: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    border-radius: calc(var(--spacing-unit) * 3);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fire-badge {
    background: var(--fire-orange);
    color: white;
}

.ice-badge {
    background: var(--ice-blue);
    color: white;
}

.magic-badge {
    background: var(--magic-purple);
    color: white;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-button {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    border: none;
    border-radius: calc(var(--spacing-unit) * 4);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.game-title {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 1);
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0;
}

.game-description {
    padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Game Showcase Section */
.game-showcase {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(31, 200, 219, 0.05);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    color: var(--text-primary);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.showcase-image {
    position: relative;
    border-radius: calc(var(--spacing-unit) * 2);
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
    background: white;
}

/* About Section */
.about-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(255, 102, 0, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.about-main {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-weight: 500;
}

.about-secondary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.about-highlights {
    display: flex;
    gap: calc(var(--spacing-unit) * 4);
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.visual-container {
    position: relative;
    text-align: center;
}

.visual-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: calc(var(--spacing-unit) * 2);
    opacity: 0.8;
}

.flame-icon, .ice-icon {
    position: absolute;
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

.flame-icon {
    top: 20%;
    left: 20%;
}

.ice-icon {
    bottom: 20%;
    right: 20%;
}

.vs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-glow);
    text-shadow: 0 0 20px var(--gold-glow);
    background: rgba(11, 15, 26, 0.8);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: calc(var(--spacing-unit) * 1);
}

/* Features Section */
.features-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(31, 200, 219, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.feature-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-glow);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Community Section */
.community-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(139, 92, 246, 0.05);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 3);
    border-radius: calc(var(--spacing-unit) * 2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(8px);
    border-color: var(--gold-glow);
}

.stat-icon {
    font-size: 2rem;
}

.stat-info .stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.community-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: calc(var(--spacing-unit) * 2);
}

/* Game Tips Section */
.game-tips {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: rgba(255, 215, 0, 0.05);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.tip-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-orange), var(--gold-glow), var(--ice-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background: rgba(255, 215, 0, 0.1);
    border-top: 1px solid var(--gold-glow);
    border-bottom: 1px solid var(--gold-glow);
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--gold-glow);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.disclaimer-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: calc(var(--spacing-unit) * 6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: calc(var(--spacing-unit) * 4);
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.footer-logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 4);
    list-style: none;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold-glow);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-social {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

/* Game Pages Styles */
.game-page {
    padding-top: 80px;
    min-height: 100vh;
}

.game-header {
    padding: calc(var(--spacing-unit) * 6) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--fire-orange), var(--ice-blue));
}

.game-header h1 {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: calc(var(--spacing-unit) * 4);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.game-container {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: calc(var(--spacing-unit) * 2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Form Styles */
.contact-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    padding-top: calc(var(--spacing-unit) * 20);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 6);
    border-radius: calc(var(--spacing-unit) * 2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.form-group label {
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: calc(var(--spacing-unit) * 1);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-glow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

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

.submit-button {
    width: 100%;
    padding: calc(var(--spacing-unit) * 3);
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    border: none;
    border-radius: calc(var(--spacing-unit) * 1);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Content Pages Styles */
.content-page {
    padding-top: 80px;
    min-height: 100vh;
}

.content-section {
    padding: calc(var(--spacing-unit) * 12) 0;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 6);
    border-radius: calc(var(--spacing-unit) * 2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-container h1 {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
    background: linear-gradient(45deg, var(--fire-orange), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-container h2 {
    font-size: 1.8rem;
    margin-top: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--gold-glow);
}

.content-container p {
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-container ul {
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding-left: calc(var(--spacing-unit) * 4);
}

.content-container li {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(11, 15, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: calc(var(--spacing-unit) * 4) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid,
    .features-grid,
    .categories-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .showcase-content,
    .about-grid,
    .community-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 4);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .footer-right {
        text-align: center;
    }
    
    .about-highlights {
        justify-content: center;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .floating-symbols .symbol {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
        font-size: 1rem;
    }
    
    .container {
        padding: 0 calc(var(--spacing-unit) * 2);
    }
    
    .contact-form,
    .content-container {
        padding: calc(var(--spacing-unit) * 4);
    }
    
    .about-highlights {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .community-stats {
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .stat-card {
        padding: calc(var(--spacing-unit) * 2);
    }
}