:root {
    color-scheme: dark;
    --primary: #cd7f32;
    /* Rust Orange */
    --secondary: #34495e;
    /* Industrial Slate */
    --accent: #bdc3c7;
    /* Steel */
    --bg: #0d0f12;
    --card-bg: rgba(255, 255, 255, 0.02);
    --text: #ecf0f1;
    --text-muted: #95a5a6;
    --font-main: 'Rajdhani', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

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

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(205, 127, 50, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
header {
    background: linear-gradient(to bottom, rgba(3, 7, 30, 0.8), transparent);
    padding: 40px 0 100px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    margin: 0 10px;
}

.btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.btn.primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

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

.btn.secondary:hover {
    border-color: var(--primary);
    background: rgba(157, 78, 221, 0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.3));
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--primary);
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(90, 24, 154, 0.1));
}

.cta-card {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(15px);
}

.server-info {
    margin: 40px 0;
}

.server-info p {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.ip-box {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.ip-box .label {
    color: var(--primary);
    margin-right: 15px;
    font-weight: 700;
}

.ip-box .ip {
    color: #fff;
    letter-spacing: 1px;
}

.disc-btn {
    background: #5865F2 !important;
    /* Discord Blue */
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4) !important;
}

.disc-btn:hover {
    background: #4752c4 !important;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6) !important;
}

/* Stats Section */
.stats {
    padding: 100px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item .stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 60px 0;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }

    .timeline-date {
        position: absolute;
        left: -180px;
        text-align: left !important;
    }

    .timeline-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}