:root {
    --bg-deep: #030304;
    --bg-panel: #09090b;
    --bg-item: #121216;
    --rust-orange: #ce422b;
    --rust-orange-hover: #b33521;
    --accent-green: #59b259;
    --text-pure: #ffffff;
    --text-darker: #a1a1aa;
    --border-line: #1f1f24;
    --paypal-blue: #00457c;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', sans-serif; }

body {
    background-color: var(--bg-deep);
    color: var(--text-pure);
    overflow-x: hidden;
    padding-bottom: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ULTRA MINIMAL HEADER */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background-color: rgba(3, 3, 4, 0.9);
    border-bottom: 1px solid var(--border-line);
    backdrop-filter: blur(8px);
    padding: 16px 0;
}
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; color: #fff; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-logo span { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }

.nav-menu { display: flex; gap: 24px; list-style: none; }
.nav-menu a { color: var(--text-darker); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-menu a:hover { color: var(--rust-orange); }

/* MODERN HERO SECTION */
.hero {
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at top right, rgba(206, 66, 43, 0.08), transparent 45%),
                radial-gradient(circle at bottom left, rgba(18, 18, 22, 0.5), var(--bg-deep));
    text-align: center;
    border-bottom: 1px solid var(--border-line);
}
.live-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; color: var(--accent-green); text-transform: uppercase; background: rgba(89, 178, 89, 0.1); padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; border: 1px solid rgba(89, 178, 89, 0.2); }
.live-badge .pulse-dot { width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(89, 178, 89, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(89, 178, 89, 0); } 100% { box-shadow: 0 0 0 0 rgba(89, 178, 89, 0); } }

.main-title { font-family: 'Oswald', sans-serif; font-size: 5.5rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1; margin-bottom: 15px; }
.main-title span { color: var(--rust-orange); }
.hero-desc { color: var(--text-darker); font-size: 1.1rem; max-width: 600px; margin: 0 auto 35px auto; line-height: 1.6; }

.action-flex { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 14px 28px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s, transform 0.2s; }
.btn-primary { background: var(--rust-orange); color: #fff; }
.btn-primary:hover { background: var(--rust-orange-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--bg-panel); color: #fff; border: 1px solid var(--border-line); }
.btn-secondary:hover { background: var(--bg-item); border-color: #3f3f46; transform: translateY(-1px); }

/* GRID INFO / GRID FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: -40px; margin-bottom: 60px; }
.f-card { background: var(--bg-panel); border: 1px solid var(--border-line); padding: 30px 20px; border-radius: 6px; text-align: center; }
.f-card i { font-size: 1.8rem; color: var(--rust-orange); margin-bottom: 16px; }
.f-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.f-card p { color: var(--text-darker); font-size: 0.85rem; line-height: 1.5; }

/* DOUBLE COLUMN SERVER STATUS & COUNTDOWN */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.dashboard-box { background: var(--bg-panel); border: 1px solid var(--border-line); padding: 30px; border-radius: 6px; }
.box-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--text-darker); }
.box-title i { color: var(--rust-orange); }

.row-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-line); font-size: 0.9rem; }
.row-item:last-child { border-bottom: none; }
.row-label { color: var(--text-darker); }
.row-value { font-weight: 600; }

.terminal-box { background: #000; border: 1px solid var(--border-line); padding: 12px 16px; margin-top: 20px; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--rust-orange); display: flex; justify-content: space-between; align-items: center; border-radius: 4px; }
.terminal-box i { color: #fff; cursor: pointer; }

/* COUNTDOWN CLOCK */
.timer-flex { display: flex; gap: 12px; margin-bottom: 20px; }
.timer-unit { background: var(--bg-item); border: 1px solid var(--border-line); padding: 16px; flex: 1; text-align: center; border-radius: 4px; }
.timer-num { font-family: 'JetBrains Mono', monospace; font-size: 2.2rem; font-weight: 700; color: var(--rust-orange); display: block; line-height: 1; margin-bottom: 4px; }
.timer-lbl { font-size: 0.65rem; text-transform: uppercase; color: var(--text-darker); letter-spacing: 0.5px; }

/* ARMORY SHOP SECTION */
.section-title { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.section-subtitle { color: var(--text-darker); font-size: 0.9rem; margin-bottom: 30px; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 60px; }
.shop-card { background: var(--bg-panel); border: 1px solid var(--border-line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }

.shop-preview { height: 180px; background: var(--bg-item); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--border-line); }
.shop-preview img { height: 100px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }

.shop-preview .custom-pack-banner { height: 100%; width: 100%; object-fit: cover; filter: none; }
.shop-preview .vip-banner { height: 100%; width: 100%; object-fit: cover; filter: none; }

.badge-tag { position: absolute; top: 12px; left: 12px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; padding: 4px 8px; border-radius: 3px; text-transform: uppercase; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); z-index: 5; }

.shop-hover-details { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(9, 9, 11, 0.95); padding: 20px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transition: opacity 0.2s; text-align: center; z-index: 4; }
.shop-card:hover .shop-hover-details { opacity: 1; }
.hover-title { font-size: 0.9rem; text-transform: uppercase; color: var(--rust-orange); margin-bottom: 10px; font-weight: 700; }
.hover-list { list-style: none; font-size: 0.8rem; color: var(--text-darker); line-height: 1.6; }

.shop-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.item-name { font-size: 1.15rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; letter-spacing: 0.5px; }
.shop-footer { display: flex; justify-content: space-between; align-items: center; }
.item-price { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; font-weight: 700; color: var(--text-pure); }
.item-price span { font-size: 0.75rem; color: var(--text-darker); }
.btn-buy { padding: 8px 16px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; text-decoration: none; background: transparent; border: 1px solid var(--border-line); color: #fff; transition: background 0.2s; }
.shop-card:hover .btn-buy { background: #fff; color: #000; border-color: #fff; }

/* PAYPAL CARD CONFIG */
.paypal-card { border: 1px dashed rgba(0, 69, 124, 0.4); background: linear-gradient(180deg, var(--bg-panel) 0%, rgba(0, 69, 124, 0.05) 100%); }
.paypal-card i.main-icon { font-size: 3.5rem; color: #0079c1; }
.btn-paypal { background: var(--paypal-blue); border: none; color: #fff; padding: 10px 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-paypal:hover { background: #0079c1; }

/* STATS / LEADERBOARD TABLE */
.table-wrapper { width: 100%; overflow-x: auto; background: var(--bg-panel); border: 1px solid var(--border-line); border-radius: 6px; }
.stats-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.85rem; min-width: 700px; }
.stats-table th, .stats-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-line); }
.stats-table th { background: rgba(0, 0, 0, 0.2); text-transform: uppercase; font-size: 0.7rem; color: var(--text-darker); letter-spacing: 1px; }
.rank-col { font-weight: 700; color: var(--text-darker); font-family: 'JetBrains Mono', monospace; }
.rank-top { color: var(--rust-orange); }
.kd-col { font-weight: 700; color: var(--accent-green); }

.progress-bg { width: 100px; height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--rust-orange); }

/* PROFESSIONAL EXTENDED FOOTER SYSTEM */
.advanced-footer {
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border-line);
    padding: 60px 0 30px 0;
    margin-top: 80px;
    color: var(--text-darker);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid-box {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.brand-column .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-column .footer-logo img {
    height: 40px;
    width: auto;
}

.brand-column .footer-logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 1px;
}

.brand-column .footer-about {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-darker);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-item);
    border: 1px solid var(--border-line);
    border-radius: 4px;
    color: var(--text-darker);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #fff;
    background-color: var(--rust-orange);
    border-color: var(--rust-orange);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-pure);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--rust-orange);
}

.links-column ul {
    list-style: none;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li a {
    color: var(--text-darker);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding 0.2s ease;
    display: inline-block;
}

.links-column ul li a:hover {
    color: var(--text-pure);
    padding-left: 4px;
}

.contact-column .contact-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-darker);
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--text-darker);
}

.contact-info-list li i {
    color: var(--rust-orange);
    font-size: 1rem;
    width: 20px;
}

.contact-info-list li a {
    color: var(--text-pure);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-list li a:hover {
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background-color: var(--border-line);
    margin: 40px 0 24px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-flex .copyright-notice {
    font-size: 0.8rem;
    color: var(--text-darker);
}

.footer-bottom-flex .copyright-notice span {
    color: var(--text-pure);
    font-weight: 600;
}

.footer-bottom-flex .legal-disclaimer {
    font-size: 0.75rem;
    color: #52525b;
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
}

/* RESPONSIVE DESIGN INTERFACES */
@media (max-width: 900px) {
    .split-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 3.5rem; }
    .nav-menu { display: none; }
    
    .footer-grid-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-bottom-flex .legal-disclaimer {
        text-align: center;
    }
}