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

body {
    font-family: 'Cinzel', sans-serif;
    background: #0b0f14;
    color: #fff;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding: 20px 60px;
}

nav h1 {
    font-family: 'Uncial Antiqua', sans-serif;
    color: #e6e6e6;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li {
    cursor: pointer;
    font-size: 14px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #4ecbff;
    text-shadow: 0 0 8px rgba(78,203,255,0.8);
}

/* Botones */
.nav-link:last-child {
    border: 1px solid #e6e6e6;
    padding: 6px 14px;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 90vh;

    background: linear-gradient(rgba(10,10,30,0.3), rgba(10,10,30,0.5)),
                url('/img/background.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    padding: 0 20px;
}

.hero h2 {
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.hero h1 {
    font-size: 50px;
    font-family: 'Uncial Antiqua', sans-serif;
    margin: 15px 0;
}

.hero p {
    max-width: 500px;
    font-size: 14px;
    color: #fff;
}

.hero button {
    margin-top: 20px;
    background: #4ecbff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
}

/* UPCOMING */
.section {
    padding: 60px;
    text-align: center;
}

.section h2 {
    margin-bottom: 40px;
    font-family: 'Uncial Antiqua', sans-serif;
}

.games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.game {
    width: 180px;
    text-align: center;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;

    overflow: hidden; /* clave para que la imagen no se salga */
    display: block; /* importante para <a> */

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.circle:active {
    transform: scale(0.95);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle:hover {
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 0 35px rgba(78,203,255,1);
    filter: brightness(1.25) saturate(1.2);
}

.status {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ONLINE */
.status.online {
    color: #3cff7a;
    text-shadow: 0 0 8px rgba(60, 255, 122, 0.7);
}

/* OFFLINE */
.status.offline {
    color: #ff4d4d;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.7);
}

/* NEWS */
.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.news-card {
    background: #151a22;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    text-align: left;
    transition: 0.3s;
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card h3 {
    padding: 15px 15px 5px;
    font-size: 16px;
}

.news-card p {
    padding: 0 15px;
    font-size: 13px;
    color: #aaa;
}

.news-card .date {
    display: block;
    padding: 15px;
    font-size: 11px;
    color: #4ecbff;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(78,203,255,0.5);
}

/* FOOTER */
.card {
    width: 100%;
    margin: 0;
    background: #151a22;
    padding: 30px 20px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    box-sizing: border-box;
}

.card-text {
    max-width: 900px;
    width: 100%
}

.card-text h3 {
    margin-bottom: 10px;
}

.card-text p {
    font-size: 14px;
    color: #aaa;
}

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

.socials a {
    text-decoration: none;
    color: #e6e6e6;
    font-size: 14px;
    transition: 0.3s;
}

.socials a:hover {
    color: #e6e6e6;
    text-shadow: 0 0 10px rgba(94,234,212,0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    /* NAV */
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* HERO */
    .hero {
        height: auto;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 14px;
        line-height: 1.4;
    }

    /* REINOS */
    .games {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .circle {
        width: 160px;
        height: 160px;
    }

    /* NEWS */
    .news-container {
        flex-direction: column;
        align-items: center;
    }

    .news-card {
        width: 90%;
    }

    /* FOOTER */
    .card {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 480px) {

    nav ul {
        gap: 10px;
        font-size: 12px;
    }

    .circle {
        width: 130px;
        height: 130px;
    }

    .section {
        padding: 30px 15px;
    }

    .game p {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 12px;
    }

    .news-card {
        width: 100%;
    }
}

</style>
