/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff9d00; /* More vibrant orange */
    --primary-light: #ffc400;
    --logo-font: 'Permanent Marker', cursive;
    --bg-dark: #0b0c10;
    --bg-secondary: #1f2833;
    --text-main: #ffffff;
    --text-muted: #c5c6c7;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}

.nav-logo {
    font-family: var(--logo-font);
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
}

.nav-logo {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff; /* Monochrome logo text */
    text-shadow: 2px 2px 0px var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.btn-join, .btn-ghost {
    display: inline-block;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-join {
    background-color: var(--primary-color);
    color: #000;
}

.btn-join:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 157, 0, 0.4);
}

.btn-join:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* SERVER IP DISPLAY */
.server-ip-copy {
    margin: 60px auto 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 14px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.8s backwards;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.server-ip-copy:hover {
    background: rgba(255, 257, 0, 0.05);
    border-color: var(--primary-color);
}

#ip-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 157, 0, 0.3);
}

.copy-hint {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 1px solid var(--glass-border);
    padding-left: 20px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b0c10 url("./assets/background.png") no-repeat center center / cover;
    background-image: linear-gradient(rgba(11, 12, 16, 0.4), rgba(11, 12, 16, 0.8)), url("./assets/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
}

.brand-text {
    font-family: var(--logo-font);
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 157, 0, 0.5);
    font-size: 6rem;
    margin-right: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* ELIMINATED REDUNDANT BUTTON BLOCKS */

/* SERVER STATUS */
.server-status {
    padding: 60px 8%;
    background: #050608;
    border-bottom: 1px solid var(--glass-border);
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.status-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 700;
}

.gt-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gt-img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

/* FEATURES SECTION */
.features {
    padding: 100px 8%;
    background-color: var(--bg-dark);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #252e3d;
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    left: 0;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

/* COMUNIDAD SECTION */
.community-cta {
    padding: 100px 8%;
    background: linear-gradient(45deg, #0b0c10, #131a22);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-main);
}

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

.discord-widget {
    flex: 0 0 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.discord-widget iframe {
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* FOOTER */
footer {
    padding: 60px 8% 30px;
    background-color: #050505;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    border-top: 1px solid #111;
    padding-top: 20px;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .community-cta {
        padding: 60px 8%;
    }
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .discord-widget {
        width: 100%;
        max-width: 350px;
    }
}
