* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background: #02060f;
    color: #f4f7ff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(135deg, #0c2041 0%, #081327 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: auto;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: #ff5b7f;
}

.menu {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.menu a {
    color: #e5e9ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu a:hover {
    color: #ffb545;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
    white-space: nowrap;
}

.search {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 8px 15px;
    color: #eef2ff;
    width: 180px;
}

.search::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search:focus {
    border-color: #ff5b7f;
    width: 220px;
    }

    .balance {
    background: #142338;
    padding: 12px 18px;
    border-radius: 12px;
    color: #7bf2b6;
    font-weight: 700;
    border: 1px solid rgba(123, 242, 182, 0.2);
}

/* NUEVO BLOQUE HERO */
.hero {
    max-width: 1400px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.hero-left {
    padding: 40px 0;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 620px;
    margin-bottom: 30px;
    color: #c8d0ff;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: #ff5b7f;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ff7b99;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e5e9ff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-right {
    text-align: right;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

.hero-card h2 {
    margin-bottom: 18px;
    font-size: 1.8rem;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.04);
    padding: 14px 18px;
    border-radius: 18px;
}

.hero-card strong {
    color: #fff;
}

.section-title {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: #a9b2ff;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px 40px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.19);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.card-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.card-content {
    padding: 24px;
}

.card h3 {
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.card p {
    color: #b9c2ef;
    margin-bottom: 18px;
}

.price {
    color: #7bf2b6;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.card .btn {
    width: 100%;
    background: #5d7bff;
    border: none;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
}

.card .btn:hover {
    background: #758fff;
}

.contact-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 34px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.contact-card {
    background: #08122a;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: #c1c9ff;
}

footer {
    text-align: center;
    padding: 22px 20px 36px;
    color: #8a94be;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        text-align: center;
    }
}

@media (max-width: 620px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-right {
        justify-content: center;
    }

    .search {
        width: 100%;
    }
}

.whatsapp-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 999;
}

.whatsapp-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.whatsapp-bubble span {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}


/* ===== TARJETAS DE JUEGOS TIPO FREE FIRE ===== */
.game-card{
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform .3s ease;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
}

.game-card:hover{
    transform: translateY(-6px);
}

.game-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.game-card h3{
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px;
    margin: 0;
}
