:root {
    --primary: #e84118;
    --primary-hover: #c23616;
    --bg-dark: #0a0a0a;
    --text-main: #f5f6fa;
    --text-muted: #7f8fa6;
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6) saturate(1.2);
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.95) 100%);
    z-index: -1;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.2s ease-out forwards;
}

.status-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.nav-status-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-status {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(232, 65, 24, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.btn-divider {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 290px;
    height: 64px;
    gap: 0.8rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.btn-primary, .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.btn-primary:hover, .btn-secondary:hover {
    background: rgba(46, 204, 113, 0.2);
    transform: translateY(-3px);
    border-color: rgba(46, 204, 113, 0.7);
    color: #2ecc71;
    box-shadow: 0 10px 30px -10px rgba(46, 204, 113, 0.2);
}

/* Stats */
.server-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    min-width: 160px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 65, 24, 0.4);
    background: rgba(255,255,255,0.06);
}

.stat-value {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Alerts */
.copy-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(46, 204, 113, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.copy-alert.show {
    transform: translateX(0);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.dark-section {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--primary);
}

.section-info {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 65, 24, 0.3);
    background: linear-gradient(145deg, rgba(232, 65, 24, 0.05) 0%, rgba(20, 20, 20, 0.65) 100%);
    box-shadow: 0 10px 30px -10px rgba(232, 65, 24, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.custom-card-img {
    max-height: 52px;
    max-width: 52px;
    object-fit: contain;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* VIP Section */
.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.vip-content {
    flex: 1;
}

.lead-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
}

.perk-list {
    list-style: none;
}

.perk-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.perk-list i {
    font-size: 1.8rem;
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.perk-list strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.perk-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.vip-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.vip-massive-icon {
    font-size: 10rem;
    color: #f1c40f;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(241, 196, 15, 0.3));
}

.vip-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(241, 196, 15, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

/* Progression section */
.progression-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.prog-card {
    padding: 2rem;
    text-align: center;
}

.prog-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.prog-card h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.prog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(232, 65, 24, 0.6);
}

.gallery-item img, 
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #050505;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h2 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links p {
    color: var(--text-muted);
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .flex-row {
        flex-direction: column;
    }
    
    .server-stats {
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none; /* simple mobile nav hide for now */
    }
}