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

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

::selection {
    background: #d4a84b;
    color: #0d0d0d;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #ccc;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: #d4a84b;
}

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

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

.nav-links a:hover {
    color: #d4a84b;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #161616 100%);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero h1 span {
    color: #d4a84b;
}

.hero .tagline {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero p {
    color: #777;
    max-width: 500px;
    margin: 0 auto 35px;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: #d4a84b;
    color: #0d0d0d;
}

.btn-primary:hover {
    background: #c49a3f;
}

.btn-outline {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
    border-color: #d4a84b;
    color: #d4a84b;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 span {
    color: #d4a84b;
}

.section-header p {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.divider {
    width: 40px;
    height: 2px;
    background: #d4a84b;
    margin: 15px auto;
}

/* About */
.about-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #888;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .num {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a84b;
    display: block;
}

.stat .label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Server */
.server-section {
    background: #111;
    max-width: 100%;
    padding: 80px 40px;
}

.server-section .inner {
    max-width: 900px;
    margin: 0 auto;
}

.server-card {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

.server-card .ip {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a84b;
    letter-spacing: 1px;
    margin: 15px 0 8px;
}

.server-card .ip-desc {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 16/10;
    border-radius: 6px;
    background: #161616;
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: border-color 0.2s;
}

.gallery-item:hover {
    border-color: rgba(212, 168, 75, 0.2);
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 40px;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta h2 span {
    color: #d4a84b;
}

.cta p {
    color: #777;
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #080808;
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

footer p {
    color: #444;
    font-size: 0.85rem;
}

footer .social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

footer .social a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

footer .social a:hover {
    color: #d4a84b;
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: rgba(13,13,13,0.98);
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    section {
        padding: 60px 20px;
    }

    .server-section {
        padding: 60px 20px;
    }

    .stats {
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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