/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #ff6b00;
    --orange-secondary: #ff8c00;
    --orange-light: #ffa500;
    --orange-glow: rgba(255, 107, 0, 0.5);
    --orange-subtle: rgba(255, 107, 0, 0.1);
    --black-primary: #0a0a0a;
    --black-secondary: #0f0f0f;
    --black-tertiary: #161616;
    --black-card: #1a1a1a;
    --black-hover: #222222;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --gray-dark: #444444;
    --success: #00c853;
    --error: #ff3d00;
    --discord: #5865F2;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 5px 30px rgba(255, 107, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black-primary);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-secondary);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo span:first-child {
    color: var(--white);
}

.preloader-logo span:last-child {
    color: var(--orange-primary);
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--black-tertiary);
    border-top-color: var(--orange-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo span:first-child {
    color: var(--white);
}

.logo span:last-child {
    color: var(--orange-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    transform: translateY(-2px);
}

.btn-discord {
    background: var(--discord);
    color: var(--white);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-primary);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 80px 1.5rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    display: block;
    padding: 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: var(--orange-subtle);
    color: var(--orange-primary);
}

.mobile-menu-buttons {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1.5rem 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: float 20s infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--orange-light);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title span {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Server IP Box */
.server-ip-box {
    display: inline-flex;
    align-items: center;
    background: var(--black-card);
    border: 2px solid var(--orange-primary);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.server-ip-box:hover {
    background: var(--orange-subtle);
    transform: scale(1.02);
}

.ip-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ip-content i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.ip-text {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: monospace;
}

.ip-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--gray-dark);
    color: var(--gray);
    transition: color var(--transition-normal);
}

.server-ip-box:hover .ip-copy {
    color: var(--orange-primary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--black-card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 1.3rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--orange-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== FEATURES ==================== */
.features-section {
    background: var(--black-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: var(--shadow-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--orange-primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--orange-primary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ==================== GAMEMODES ==================== */
.gamemodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gamemode-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.gamemode-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.gamemode-card.featured {
    border-color: var(--orange-primary);
}

.gamemode-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.gamemode-image {
    height: 150px;
    background: linear-gradient(135deg, var(--orange-subtle), rgba(255, 140, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--orange-primary);
}

.gamemode-content {
    padding: 1.5rem;
}

.gamemode-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.gamemode-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gamemode-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.gamemode-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.gamemode-features li i {
    color: var(--orange-primary);
    font-size: 0.8rem;
}

/* ==================== ACTIVITY SECTION ==================== */
.activity-section {
    background: var(--black-secondary);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.activity-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-3px);
}

.activity-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.activity-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.activity-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.activity-info .product {
    color: var(--orange-primary);
}

.activity-info .time {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.activity-cta {
    text-align: center;
}

/* Skeleton Loading */
.activity-card.skeleton .activity-avatar,
.activity-card.skeleton .skeleton-text {
    background: linear-gradient(90deg, var(--black-tertiary) 25%, var(--black-hover) 50%, var(--black-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==================== DISCORD SECTION ==================== */
.discord-section {
    background: var(--black-primary);
}

.discord-card {
    background: linear-gradient(135deg, #5865F2, #4752c4);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.discord-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.discord-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.discord-info p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.discord-stats {
    display: flex;
    gap: 2rem;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.discord-stat i.online {
    color: #00c853;
    font-size: 0.6rem;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 140px 0 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-subtle);
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--orange-primary);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.page-meta {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.page-meta i {
    margin-right: 0.5rem;
    color: var(--orange-primary);
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
    background: var(--black-secondary);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar / TOC */
.content-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.toc-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toc-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--orange-primary);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
    display: block;
    padding: 0.4rem 0;
}

.toc-list a:hover {
    color: var(--orange-primary);
}

/* Main Content */
.content-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-card h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-card h2 i {
    color: var(--orange-primary);
}

.content-text p {
    margin-bottom: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.content-text h4 {
    margin: 1.5rem 0 0.75rem;
    color: var(--white);
}

.content-text ul,
.content-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.content-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-text code {
    background: var(--black-tertiary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--orange-light);
}

.content-text a {
    color: var(--orange-primary);
    text-decoration: none;
}

.content-text a:hover {
    text-decoration: underline;
}

.content-notice {
    background: var(--orange-subtle);
    border: 1px solid var(--orange-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.content-notice i {
    color: var(--orange-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content-notice p {
    color: var(--gray-light);
    margin: 0;
}

/* ==================== FAQ ==================== */
.faq-search {
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.faq-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: var(--black-card);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.faq-categories {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.faq-category {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--black-card);
    color: var(--gray);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category:hover,
.faq-category.active {
    background: var(--orange-primary);
    color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    color: var(--orange-primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer code {
    background: var(--black-tertiary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: block;
    margin: 0 1.5rem 1rem;
    font-family: monospace;
    color: var(--orange-light);
}

.faq-no-results {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

.faq-no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.faq-contact {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--black-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.faq-contact-content {
    flex: 1;
}

.faq-contact-content h3 {
    margin-bottom: 0.25rem;
}

.faq-contact-content p {
    color: var(--gray);
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
}

.contact-card.discord:hover {
    border-color: var(--discord);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.contact-card.discord .contact-card-icon {
    background: rgba(88, 101, 242, 0.2);
    color: var(--discord);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.contact-card-content p {
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-link {
    color: var(--orange-primary);
    font-size: 0.9rem;
}

.contact-card > i {
    color: var(--gray);
}

.response-time {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.response-time i {
    color: var(--orange-primary);
    font-size: 1.5rem;
}

.response-time h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.response-time p {
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-social h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link-large {
    width: 50px;
    height: 50px;
    background: var(--black-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link-large:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-card h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-card h2 i {
    color: var(--orange-primary);
}

.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: var(--black-tertiary);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.form-input::placeholder {
    color: var(--gray);
}

.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='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--orange-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.checkbox-container input:checked + .checkmark {
    background: var(--orange-primary);
}

.checkbox-container input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 0.7rem;
}

.checkbox-container a {
    color: var(--orange-primary);
    text-decoration: none;
}

/* FAQ Teaser */
.faq-teaser-section {
    background: var(--black-primary);
}

.faq-teaser {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-teaser-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.faq-teaser-content {
    flex: 1;
}

.faq-teaser-content h3 {
    margin-bottom: 0.25rem;
}

.faq-teaser-content p {
    color: var(--gray);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--black-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--black-card);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    border-left: 4px solid var(--success);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--success);
    font-size: 1.3rem;
}

.toast-content h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.toast-content p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 1rem 40px;
    }
    
    .server-ip-box {
        flex-direction: column;
        padding: 1rem;
    }
    
    .ip-copy {
        margin-left: 0;
        margin-top: 1rem;
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid var(--gray-dark);
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
    }
    
    .discord-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .discord-content {
        flex-direction: column;
    }
    
    .discord-stats {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-contact,
    .faq-teaser {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .features-grid,
    .gamemodes-grid,
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-category {
        justify-content: center;
    }
}