/* Import de fuentes */
@import url('https://solargentinotv.com.ar/assets/fonts/Gilroy/Gilroy.css');
@import url('https://fonts.cdnfonts.com/css/minecraftia');

* {
    font-family: 'Gilroy';
}

::selection {
    color: #222;
    background: #00ff88;
}

/* Body y global */
body {
    margin: 0;
    background: #000000;
    /* Dark mode */
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: #111;
    padding: 1rem;
}

.navbar a {
    font-family: 'Gilroy', sans-serif;
    /* fuente general */
    color: #00ff88;
    /* verde */
    text-decoration: none;
    outline: 2px solid #A0A0A0;
    padding: 0.65rem 0.8rem;
    /* altura uniforme */
    transition: 0.2s;
}

.navbar a:hover {
    outline: 2px solid #fff;
    background: #00ff88;
    color: #000;
}

/* Botón Jugar Ahora */
#btn-jugarahora {
    font-family: 'Minecraftia', monospace;
    /* solo Jugar Ahora */
    background: #000;
    outline: 2px solid #A0A0A0;
    color: #fff;
    /* mismo padding que otros botones */
    text-decoration: none;
    position: relative;
    padding-bottom: 0.55em !important;
    padding-top: 0.4em;
}

#btn-jugarahora:hover {
    outline: 2px solid #fff;
}

/* Botones generales (sin Minecraftia) */
.btn,
.btn-default {
    font-family: 'Gilroy', sans-serif;
    /* fuente general */
    display: inline-block;
    padding: 0.3rem 0.8rem;
    /* altura uniforme */
    text-decoration: none;
    outline: 2px solid #A0A0A0;
    background: #000;
    color: #fff;
    transition: 0.2s;
}

/* Hover general de botones, excluyendo Jugar Ahora */
.btn:not(#btn-jugarahora):hover,
.btn-default:not(#btn-jugarahora):hover {
    outline: 2px solid #fff;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    background: #111 url('assets/images/hero-bg.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 3rem;
    color: #00ff88;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Secciones */
section {
    padding: 2em 4em 2em 4em;
    max-width: 800px;
    margin: 0 auto;
    background: #222;
    height: auto;
    margin-top: 2em;
    outline: solid 3px #FFF;
    border-radius: 0.3em;
    margin-bottom: 1em;
}

h2,
h3 {
    color: #00ff88;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.card {
    background: rgb(0 0 0);
    outline: 2px solid #fff;
    padding: 1rem;
    border-radius: 0.3em;
    color: #fff;
    cursor: pointer;
}

.card:hover strong {
    color: #000;
}

.card:hover {
    background: #00ff88;
    color: #000;
}

.card:hover {}

.card strong {
    color: #00ff88;
}

/* Footer */
footer {
    background: #111;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ccc;
    position: relative;
    bottom: -1.55em;
}

/* Cartel Newsletter */
.newsletter-cartel {
    position: fixed;
    bottom: 2rem;
    /* cartel abajo, tipo notificación */
    right: 2rem;
    max-width: 350px;
    background: #111;
    color: #fff;
    padding: 1rem 1.5rem;
    border: 2px solid #00ff88;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeInUp 0.4s ease-out;
}

.newsletter-cartel p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4rem;
}

.newsletter-cartel a {
    color: #00ff88;
    font-weight: bold;
    text-decoration: none;
}

.newsletter-cartel a:hover {
    text-decoration: underline;
}

.close-btn {
    cursor: pointer;
    font-size: 1.2rem;
    color: #aaa;
    transition: color 0.2s;
    position: absolute;
    top: 6px;
    right: 10px;
}

.close-btn:hover {
    color: #00ff88;
}

#newsletter-btn:hover {
    background: #00ff88;
    color: #000;
}

.hidden {
    display: none !important;
}

/* Animación entrada cartel */
@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}