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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0c;
    color: #e4e4e7;
    line-height: 1.6;
}

@keyframes pageSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

body > *:not(.navbar):not(.nav-menu-mobile) {
    animation: pageSlideUp 0.5s ease forwards;
}

a { text-decoration: none; color: inherit; }

body.menu-open { overflow: hidden; }

.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Navbar ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 300;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e4e4e7;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #71717a;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e4e4e7;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 301;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e4e4e7;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu-mobile { display: none; }

/* ==================== Hero ==================== */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-content { text-align: center; width: 100%; }

.hero-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #71717a;
    max-width: 480px;
    margin: 0 auto;
}

/* ==================== Sections ==================== */
.section {
    padding: 60px 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    color: #71717a;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ==================== Social ==================== */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #71717a;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #e4e4e7;
}

/* ==================== Status ==================== */
.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.status-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px;
}

.status-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 10px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #52525a;
}

.status-indicator.online {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.status-indicator.offline {
    background: #ef4444;
}

.status-indicator.maintenance {
    background: #f59e0b;
}

.status-text {
    font-size: 0.85rem;
    color: #71717a;
    text-transform: capitalize;
}

/* ==================== Footer ==================== */
.footer {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
    font-size: 0.85rem;
    color: #52525a;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-hamburger { display: flex; }

    .nav-menu-mobile {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 12, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 200;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu-mobile.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu-mobile .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .nav-menu-mobile .nav-links a {
        font-size: 1.25rem;
        font-weight: 500;
        color: #71717a;
        padding: 14px 0;
        display: block;
    }

    .nav-menu-mobile .nav-links a:hover { color: #e4e4e7; }

    .hero-name { font-size: 2rem; }
    .status-grid { grid-template-columns: 1fr; }
}
