:root {
    --primary-color: #f39c12; /* Ámbar ARK */
    --dark-bg: #1a1a1a;
    --card-bg: #2c3e50;
    --text-color: #e0e0e0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Textura de fondo sutil */
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

/* --- Navegación --- */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-family: 'Staatliches', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links li a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

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

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('ImagenBackground.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: 'Staatliches', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}
.hero span {
    color: var(--primary-color);
}

.btn-main {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

/* --- Secciones Generales --- */
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.alt-bg {
    background: rgba(44, 62, 80, 0.3);
    max-width: 100%;
}

h2 {
    font-family: 'Staatliches', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* --- Galería --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #444;
    transition: transform 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary-color);
}

/* --- Presentación Staff --- */
.staff-presentation {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.staff-photo-container {
    position: relative;
    max-width: 550px;
    /* Eliminamos bordes gruesos y sombras saturadas */
    border-bottom: 1px solid var(--primary-color); /* Solo una línea sutil de base */
    overflow: hidden;
    transition: all 0.5s ease;
}

.staff-img {
    width: 100%;
    display: block;
    filter: grayscale(40%) brightness(90%);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.staff-photo-container:hover .staff-img {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}

.staff-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    text-align: left;
}

.staff-overlay p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
}

/* --- Mods --- */
.mod-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.mod-item {
    background: #333;
    padding: 15px 25px;
    border-left: 5px solid var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}


/* --- Discord --- */
.discord-img {
    width: 250px;
    margin-top: 20px;
    transition: filter 0.3s;
    filter: grayscale(0.5);
}

.discord-img:hover {
    filter: grayscale(0);
    cursor: pointer;
}

/* --- Animaciones --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card {
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 75%;
    margin: auto;
}

footer {
    padding: 20px;
    text-align: center;
    background: #111;
    border-top: 1px solid #333;
}