:root {
    --primary-cyan: #44c5db;
    --primary-green: #00d1c7;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F5;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
}

.dropdown-menu li {
    padding: 0;
    text-align: center;
}

.dropdown-menu a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::after,
.dropdown-menu a.active::after {
    transform: scaleX(1);
}

.dropdown-menu a:hover {
    color: var(--primary-cyan);
}

/* Loading Screen */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #87CEEB 0%, #B8E1F0 50%, #E8F4F8 100%);
    margin-top: 80px;
    --parallax-offset: 0px;
    --content-offset: 0px;
    --content-opacity: 1;
}

/* CSS Art Mountains */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: 
        linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.9) 60%, transparent 60%),
        linear-gradient(-135deg, transparent 30%, rgba(200, 220, 230, 0.8) 30%, rgba(200, 220, 230, 0.8) 50%, transparent 50%);
    background-size: 800px 100%, 600px 100%;
    background-position: -200px bottom, right bottom;
    background-repeat: no-repeat;
    z-index: 2;
    transform: translateY(var(--parallax-offset));
}

/* Trees on sides */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 250px solid #2F5F3F;
    z-index: 1;
    transform: translateY(var(--parallax-offset));
}

.hero-tree-right {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 200px solid #2F5F3F;
    z-index: 1;
    transform: translateY(var(--parallax-offset));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    transform: translateY(var(--content-offset));
    opacity: var(--content-opacity);
}

.hero-logo {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.hero-tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-tagline-2 {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-cyan);
    border: 2px solid white;
}

.btn-hero-primary:hover {
    background: var(--primary-cyan);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-cyan);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
    --parallax-offset: 0px;
}

/* Parallax backgrounds for different pages */
.page-header-about {
    background: linear-gradient(to bottom, #667eea 0%, #764ba2 100%);
}

.page-header-about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
    transform: translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header-games {
    background: linear-gradient(to bottom, #11998e 0%, #38ef7d 100%);
}

.page-header-games::before {
    content: '🎮';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    bottom: -3rem;
    right: -3rem;
    transform: translateY(var(--parallax-offset)) rotate(-15deg);
    z-index: 1;
}

.page-header-contact {
    background: linear-gradient(to bottom, #f093fb 0%, #f5576c 100%);
}

.page-header-contact::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header-contact::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header-beta {
    background: linear-gradient(to bottom, #fa709a 0%, #fee140 100%);
}

.page-header-beta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.2) 70%, transparent 70%);
    background-size: 100px 100px;
    transform: translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header-news {
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
}

.page-header-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.1) 50px, rgba(255, 255, 255, 0.1) 51px);
    transform: translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header-dashboard {
    background: linear-gradient(to bottom, #30cfd0 0%, #330867 100%);
}

.page-header-dashboard::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) translateY(var(--parallax-offset));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Section styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-cyan);
    margin: 0 auto 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Preview Sections (Home Page) */
.preview-section {
    padding: 5rem 0;
}

.alt-bg {
    background: var(--bg-gray);
}

.featured-games-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.large-card {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.featured-game-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #87CEEB, #25D6BA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-game-image.small {
    aspect-ratio: 16/9;
}

.game-placeholder {
    font-size: 5rem;
}

.game-placeholder.small {
    font-size: 3rem;
}

.featured-game-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-game-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.featured-game-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-card {
    align-self: flex-start;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-large {
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
}

/* News Preview */
.news-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.news-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-preview-card.featured {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
}

.news-preview-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #87CEEB, #25D6BA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    font-size: 4rem;
}

.news-preview-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

.news-preview-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-preview-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-cyan);
    border: 2px solid white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-cyan);
}

.btn-cta-third {
    background: var(--text-dark) !important;
    color: white !important;
    border: 2px solid var(--text-dark) !important;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-cta-third:hover {
    background: white !important;
    color: var(--text-dark) !important;
    border: 2px solid white !important;
}

/* Games Section */
.games-section {
    background: white;
}

.game-showcase {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}

.game-showcase:nth-child(even) {
    flex-direction: row-reverse;
}

.game-image {
    flex: 1;
    min-width: 400px;
}

.game-image-wrapper {
    width: 100%;
    aspect-ratio: 16/11;
    background: linear-gradient(135deg, #87CEEB, #25D6BA);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.game-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.game-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--bg-gray);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    background: var(--bg-gray);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* News Detail Section */
.news-detail-section {
    background: white;
}

.news-featured {
    background: var(--bg-gray);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 5rem;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #87CEEB, #25D6BA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder.large {
    font-size: 8rem;
}

.news-featured-content {
    padding: 3rem;
}

.news-featured-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.news-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-featured-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.news-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.news-list li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.news-featured-content a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.news-featured-content a:hover {
    text-decoration: underline;
}

.news-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.news-card-full {
    background: var(--bg-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #87CEEB, #25D6BA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-gray);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-gray);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

/* Beta Tester Section */
.beta-info-section {
    background: var(--bg-gray);
    padding: 5rem 0;
}

.beta-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.beta-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.beta-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beta-info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beta-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.beta-info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.beta-tester-section {
    background: white;
}

.beta-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.beta-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--bg-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.beta-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-gray);
    transition: all 0.3s ease;
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: white;
    box-shadow: 0 0 0 3px rgba(68, 197, 219, 0.1);
}

.beta-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.beta-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Slider Styling */
.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.slider-container input[type="range"] {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-cyan);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.slider-value {
    font-weight: 700;
    color: var(--primary-cyan);
    font-size: 1.2rem;
    min-width: 40px;
    text-align: right;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Contact Section */
.contact-page-section {
    background: white;
}

.about-page-section {
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-values {
    margin-top: 5rem;
}

.about-values h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-content-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info-full h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.3rem;
}

.contact-social a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.contact-social a:hover {
    text-decoration: underline;
}

.btn-discord {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
}

.contact-form-full h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Quick Links Section */
.quick-links-section {
    background: var(--bg-gray);
    padding: 5rem 0;
}

.quick-links-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--primary-cyan);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-cyan);
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn:hover {
    background: var(--primary-cyan);
    color: white;
    transform: scale(1.05);
}

.btn-secondary {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-cyan);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-games-grid {
        grid-template-columns: 1fr;
    }
    
    .large-card {
        grid-row: span 1;
    }
    
    .news-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .news-preview-card.featured {
        grid-row: span 1;
    }
    
    .contact-content-full {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beta-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .game-showcase {
        flex-direction: column !important;
        gap: 3rem;
    }
    
    .game-image {
        min-width: 100%;
    }
    
    .news-grid-full {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beta-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
}

/* Dashboard Styles */
.dashboard-section {
    min-height: 70vh;
    padding: 4rem 0;
}

.login-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
}

.login-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.login-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.google-signin-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.login-divider {
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--bg-gray);
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.login-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.login-note a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

.dashboard-content {
    padding: 2rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
}

.btn-text {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-logout {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-logout:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Profile Card */
.profile-card {
    grid-column: span 2;
}

.profile-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-cyan);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.profile-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.member-since {
    font-size: 0.9rem;
    font-style: italic;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

/* Beta Programs Card */
.beta-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beta-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.beta-item:hover {
    background: #e8e8e8;
}

.beta-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.beta-info {
    flex: 1;
}

.beta-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.beta-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.badge-active {
    background: #d4edda;
    color: #155724;
}

.badge-waitlist {
    background: #fff3cd;
    color: #856404;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-cyan);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.beta-item-empty {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
}

.beta-item-empty p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Stats Card */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

/* Activity Card */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 8px;
}

.activity-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.activity-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Downloads Card */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 8px;
}

.download-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.download-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.file-size {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.btn-download {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Quick Links Card */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: var(--primary-cyan);
    color: white;
}

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

.arrow {
    margin-left: auto;
    font-size: 1.2rem;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .beta-item {
        flex-wrap: wrap;
    }
    
    .download-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}