:root {
    --primary-color: #76ff03; /* Neon Green */
    --secondary-color: #d500f9; /* Purple accent */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-dim: #b0b0b0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.logo .highlight {
    color: var(--primary-color);
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background: var(--primary-color);
    color: black !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1e1e1e 0%, #000000 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin: 20px 0 10px;
    background: -webkit-linear-gradient(#fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.desc {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Big Button */
.download-area {
    margin-top: 40px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #64dd17, #76ff03);
    color: #000;
    padding: 25px 60px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 3px solid #fff;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(118, 255, 3, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(118, 255, 3, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(118, 255, 3, 0); }
    100% { box-shadow: 0 0 0 0 rgba(118, 255, 3, 0); }
}

.server-status {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4caf50;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}

.card {
    background: var(--bg-card);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.card h3 {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Content Sections */
.content-section, .seo-content {
    padding: 40px 20px;
}

h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.changelog-box {
    background: #151515;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.changelog-box h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.changelog-box ul {
    list-style-position: inside;
    color: var(--text-dim);
}

.changelog-box li {
    margin-bottom: 8px;
}

.update-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.update-group h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.update-group p {
    color: var(--text-dim);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.seo-content p {
    color: var(--text-dim);
    margin-bottom: 15px;
}

footer {
    background: black;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .download-btn { padding: 20px 30px; font-size: 1.2rem; width: 100%; }
    .info-grid { grid-template-columns: 1fr 1fr; margin-top: 20px; }
    nav { display: none; } /* Simplified for mobile */
    .logo { font-size: 24px; }
}