/* ===== CSS Variables ===== */
:root {
    --primary: #0fd4c4;
    --primary-dark: #0bb8aa;
    --background: #0a0f14;
    --background-secondary: #111921;
    --background-tertiary: #1a242f;
    --foreground: #ffffff;
    --foreground-muted: #8b99a8;
    --border: #2a3744;
    --accent: #ff6b35;
    --success: #22c55e;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', var(--font-sans);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Utilities ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground-muted);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--foreground);
    background: var(--background-tertiary);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--background);
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 20, 0.7) 0%,
        rgba(10, 15, 20, 0.85) 50%,
        rgba(10, 15, 20, 1) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 212, 196, 0.15);
    border: 1px solid rgba(15, 212, 196, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 500;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--foreground-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.server-ip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ip-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--foreground-muted);
}

.ip-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.ip-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--background);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-secondary {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-secondary:hover {
    background: var(--background-tertiary);
    border-color: var(--foreground-muted);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--foreground-muted);
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Sections Common ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(15, 212, 196, 0.1);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--foreground-muted);
    line-height: 1.7;
}

/* ===== Game Modes ===== */
.gamemodes {
    background: var(--background);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mode-card {
    position: relative;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mode-card.featured {
    grid-row: span 2;
}

.mode-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mode-card.featured .mode-image {
    height: 280px;
}

.mode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mode-card:hover .mode-image img {
    transform: scale(1.05);
}

.mode-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background-secondary) 0%, transparent 100%);
}

.mode-content {
    padding: 24px;
}

.mode-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mode-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mode-content p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.mode-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.mode-features li {
    padding: 6px 12px;
    background: var(--background-tertiary);
    font-size: 0.8125rem;
    color: var(--foreground-muted);
    border-radius: 100px;
}

.mode-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s ease;
}

.mode-link:hover {
    gap: 12px;
}

.mode-link svg {
    width: 18px;
    height: 18px;
}

/* ===== Features ===== */
.features {
    background: var(--background-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 212, 196, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--background-tertiary) 0%, var(--background) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.0625rem;
    color: var(--foreground-muted);
    margin-bottom: 32px;
}

.cta-ip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cta-ip .ip-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: var(--background);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--foreground-muted);
    transition: all 0.2s ease;
}

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

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* ===== Page Header ===== */
.page-header {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--background-secondary) 0%, var(--background) 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Content Pages ===== */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.content-sidebar {
    position: sticky;
    top: 96px;
    height: fit-content;
}

.sidebar-nav {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-nav h3 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground-muted);
    margin-bottom: 16px;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--background-tertiary);
    color: var(--foreground);
}

.content-main {
    max-width: 800px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

.content-block p {
    font-size: 1rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-block li {
    font-size: 1rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.content-block ol {
    list-style: decimal;
}

.content-block ul {
    list-style: disc;
}

/* ===== Rules Page ===== */
.rule-category {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.rule-category h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.rule-category h2 .rule-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 212, 196, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.rule-category h2 .rule-icon svg {
    width: 20px;
    height: 20px;
}

.rule-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.rule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rule-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-tertiary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.rule-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.rule-content p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    line-height: 1.6;
}

/* ===== Store Page ===== */
.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.store-card {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.store-card.featured {
    border-color: var(--accent);
    position: relative;
}

.store-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    z-index: 1;
}

.store-header {
    padding: 32px 24px;
    text-align: center;
    background: var(--background-tertiary);
}

.store-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.store-price .currency {
    font-size: 1.25rem;
    color: var(--foreground-muted);
}

.store-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.store-price .period {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.store-features {
    padding: 32px 24px;
}

.store-features ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.store-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--foreground-muted);
}

.store-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.store-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--background);
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.store-btn:hover {
    background: var(--primary-dark);
}

/* ===== Vote Page ===== */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vote-card {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.vote-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.vote-site {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vote-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-tertiary);
    border-radius: var(--radius);
    color: var(--primary);
}

.vote-logo svg {
    width: 28px;
    height: 28px;
}

.vote-site h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.vote-site p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.vote-card > p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--background);
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.vote-btn:hover {
    background: var(--primary-dark);
}

.vote-btn svg {
    width: 18px;
    height: 18px;
}

.vote-rewards {
    margin-top: 60px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reward-card {
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.reward-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 212, 196, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin: 0 auto 16px;
}

.reward-icon svg {
    width: 24px;
    height: 24px;
}

.reward-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.reward-card p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* ===== About Page ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.team-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--background-tertiary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    overflow: hidden;
}

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

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mode-card.featured {
        grid-row: auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .modes-grid,
    .features-grid,
    .store-grid,
    .vote-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-ip {
        flex-direction: column;
    }
}
