@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    color: #e8edf5;
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(120, 80, 255, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 20, 40, 0.8) 0%, transparent 100%);
    background-attachment: fixed;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00b4d8, #0077b6); border-radius: 10px; }

#site {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px 40px;
}

/* === HEADER === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}

header h1 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
header h1 span { font-size: 28px; }

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
nav a {
    color: #7a8ca8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
nav a:hover,
nav a.active {
    color: #e8edf5;
    border-bottom-color: #00b4d8;
}

/* === HERO === */
.hero {
    text-align: center;
    padding: 60px 20px 50px;
}
.hero h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}
.hero h2 span {
    background: linear-gradient(135deg, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 18px;
    color: #a0b0c8;
    max-width: 600px;
    margin: 16px auto 28px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-color: #00b4d8;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,180,216,0.3);
}
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #e8edf5;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* === STATS SECTION === */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 40px 0 50px;
}
.stat-card {
    background: rgba(20, 27, 43, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.stat-label {
    font-size: 13px;
    color: #7a8ca8;
    font-weight: 600;
    margin-top: 4px;
}

/* === INFO SECTION === */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 20px 0 50px;
}
.info-card {
    background: rgba(20, 27, 43, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e8edf5;
    margin-bottom: 12px;
}
.info-card p {
    font-size: 14px;
    color: #a0b0c8;
    line-height: 1.7;
}
.info-card code {
    background: rgba(0,0,0,0.4);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: #48cae4;
}
.info-card a {
    color: #00b4d8;
    text-decoration: none;
    font-weight: 600;
}
.info-card a:hover {
    text-decoration: underline;
}
.status-online { color: #2ecc71; font-weight: 600; }
.status-offline { color: #ff4757; font-weight: 600; }

/* === FOOTER === */
footer {
    text-align: center;
    padding: 30px 0 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: #4a6a7a;
    font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 720px) {
    header { flex-direction: column; align-items: center; text-align: center; }
    .hero h2 { font-size: 28px; }
    .hero p { font-size: 16px; }
}
