* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 15px;
}

.navbar a:hover {
    color: #00d0ff;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('img/fondo.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(32, 32, 32, 0.512), rgba(18, 18, 18, 0.37));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.logo {
    max-width: 250px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content .btn {
    display: inline-block;
    padding: 12px 22px;
    background: #00d0ff;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0,208,255,0.6);
    font-size: 14px;
}

.hero-content .btn:hover {
    background: #00a8cc;
    box-shadow: 0 0 25px rgba(0,208,255,0.9);
}

.highlight {
    color: #00d0ff;
    font-weight: bold;
}

.welcome {
    background: #111;
    color: rgb(190, 190, 190);
    text-align: center;
    padding: 40px 15px;
}

.welcome h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
}

.welcome p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    font-size: 14px;
}

.options {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #111;
    padding: 40px 15px;
    flex-wrap: wrap;
}

.option-card {
    background: #1c1c1c;
    color: white;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(62, 62, 62, 0.4);
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.option-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.discord {
    background: linear-gradient(135deg, #5865F2, #404EED);
    color: white;
    text-align: center;
    padding: 50px 15px;
}

.discord-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.discord-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.discord-img {
    width: 700px;
    height: 400px;
    border-radius: 12px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.discord-img:hover {
    transform: scale(1.02);
}

.btn-discord {
    display: inline-block;
    padding: 12px 22px;
    background: white;
    color: #5865F2;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
    font-size: 14px;
}

.btn-discord:hover {
    background: #ddd;
}

footer {
    background: #0d0d0d;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .discord-img { width: 100%; height: auto; }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    .navbar a {
        margin: 8px 0;
    }
    .hero-title {
        font-size: 22px;
    }
    .discord-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo { max-width: 180px; }
    .hero-title { font-size: 20px; }
    .option-card { max-width: 100%; }
}
