/* ----- NAVBAR ----- */
body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: radial-gradient(
        circle at top left,
        #1a2240,
        #0b0f1a 60%
    );
    background-attachment: fixed;
    color: #fff;
}


/* customizable snowflake styling */
.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}
 
.snowflake,.snowflake .inner{animation-iteration-count:infinite;animation-play-state:running}@keyframes snowflakes-fall{0%{transform:translateY(0)}100%{transform:translateY(110vh)}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;user-select:none;cursor:default;pointer-events:none;animation-name:snowflakes-shake;animation-duration:3s;animation-timing-function:ease-in-out}.snowflake .inner{animation-duration:10s;animation-name:snowflakes-fall;animation-timing-function:linear}.snowflake:nth-of-type(0){left:1%;animation-delay:0s}.snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8) .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}.snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}.snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}.snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}.snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}.snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}.snowflake:nth-of-type(11){left:65%;animation-delay:2.5s}

/* ===== TOP BAR OFERTA MÚLTIPLE ===== */
.top-bar {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    height: 35px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 10s linear infinite; /* ajusta velocidad */
}

/* Animación desplazamiento */
@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Resaltar código o partes importantes */
.top-bar-content strong {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 4px;
}


/* ===== NAVBAR ===== */

.navbar {
    width: 100%;
    background: #0f131a;
    border-bottom: 2px solid #0d6efd;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #dce3f1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0d6efd;
    text-shadow: 0 0 10px #0d6efd;
}

/* ----- Dropdown Servicios ----- */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
    position: relative;
}

/* Contenedor principal: grid de 2 columnas */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f131a;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
    min-width: 500px; /* ancho total del dropdown */
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);

    grid-template-columns: repeat(2, 1fr); /* 2 columnas iguales */
    gap: 15px 20px; /* vertical y horizontal */
    box-sizing: border-box;
}

/* Cada columna ahora solo organiza verticalmente */
.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Service items */
.service-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 15px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* IMPORTANTE */
}

/* Hover: línea blanca + degradado */
.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    background: rgba(255,255,255,0.05); /* fondo sutil al hover */
    box-shadow: 0 0 10px rgba(255,255,255,0.15); /* glow suave */
}

.service-item:active {
    transform: scale(0.97);
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0)
    );
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
}


/* Imagen y texto */
.service-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-item div {
    display: flex;
    flex-direction: column;
}

.service-item strong {
    color: #0d6efd;
    font-size: 14px;
}

.service-item p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #a1adc4;
}

.service-link {
    text-decoration: none;
    display: block;
}

/* Mostrar dropdown al pasar el mouse */
.dropdown:hover .dropdown-content {
    display: flex;
}




/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #0f131a 0%, #141822 100%);
    color: #a1adc4;
    padding: 60px 8% 30px;
    font-family: 'Arial', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo */
.footer-logo img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-logo p {
    max-width: 250px;
    font-size: 14px;
    color: #a1adc4;
}

/* Links útiles */
.footer-links h4,
.footer-cta h4,
.footer-payments h4 {
    color: #0d6efd;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a1adc4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0d6efd;
    text-shadow: 0 0 8px rgba(13,110,253,0.5);
}

/* Botones destacados */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-footer {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
    text-align: center;
}


.btn-discord img{ 
    width: 20px;
    margin-left: 10px;
}



.btn-contact img{ 
    width: 20px;
    margin-left: 35px;
}


/* Métodos de pago */
.footer-payments .payments-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-payments .payments-icons img {
    width: 50px;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.footer-payments .payments-icons img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}



/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links ul li, 
    .footer-cta a {
        text-align: center;
    }
}
