/* Yaass ES site-5 | prefix: ys5- | Nunito Sans | rounded soft glow */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito Sans', sans-serif;
    background: #0B0B0B;
    color: #e8e8e8;
    line-height: 1.7;
    padding-bottom: 60px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
    --ys5-magenta: #E800E8;
    --ys5-magenta-dark: #B000B0;
    --ys5-bg: #0B0B0B;
    --ys5-card: #161616;
    --ys5-border: rgba(232,0,232,.22);
    --ys5-radius-lg: 20px;
    --ys5-radius-xl: 28px;
    --ys5-glow: 0 4px 20px rgba(232,0,232,.35);
    --ys5-glow-hover: 0 8px 32px rgba(232,0,232,.5);
    --ys5-container: 1200px;
    --ys5-transition: .2s ease;
}

/* === PROMO BAR === */
.ys5-promo {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #B000B0, #E800E8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
}
.ys5-promo a {
    background: #fff;
    color: #B000B0;
    padding: 8px 20px;
    border-radius: var(--ys5-radius-xl);
    font-weight: 900;
    white-space: nowrap;
    transition: opacity var(--ys5-transition);
}
.ys5-promo a:hover { opacity: .85; }
.ys5-promo-x {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    line-height: 1;
    padding: 2px 6px;
}

/* === HEADER === */
.ys5-header {
    position: sticky;
    top: 0;
    background: #0B0B0B;
    z-index: 100;
    border-bottom: 2px solid var(--ys5-border);
}
.ys5-header-row {
    max-width: var(--ys5-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
}
.ys5-logo img { height: 38px; }
.ys5-nav { display: none; gap: 24px; }
.ys5-nav a {
    font-weight: 700;
    font-size: 14px;
    color: #ccc;
    transition: color var(--ys5-transition);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.ys5-nav a:hover {
    color: var(--ys5-magenta);
    border-bottom-color: var(--ys5-magenta);
}
.ys5-header-cta {
    display: none;
}
.ys5-burger {
    background: none;
    border: 2px solid var(--ys5-border);
    border-radius: 8px;
    color: #fff;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}
.ys5-mobile-nav {
    display: none;
    flex-direction: column;
    background: #111;
    border-top: 1px solid var(--ys5-border);
    padding: 12px 20px 20px;
    gap: 4px;
}
.ys5-mobile-nav.ys5-open { display: flex; }
.ys5-mobile-nav a {
    font-weight: 700;
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 15px;
}
.ys5-mobile-nav a:last-child { border-bottom: none; }

/* === BUTTONS === */
.ys5-btn {
    display: inline-block;
    background: var(--ys5-magenta);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--ys5-radius-xl);
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--ys5-transition), transform .15s, box-shadow var(--ys5-transition);
    box-shadow: var(--ys5-glow);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.ys5-btn:hover {
    background: var(--ys5-magenta-dark);
    transform: translateY(-2px);
    box-shadow: var(--ys5-glow-hover);
}
.ys5-btn-outline {
    background: transparent;
    border: 2px solid var(--ys5-magenta);
    color: var(--ys5-magenta);
    box-shadow: none;
}
.ys5-btn-outline:hover {
    background: var(--ys5-magenta);
    color: #fff;
    box-shadow: var(--ys5-glow);
}
.ys5-btn-out { display: inline-block; max-width: 280px; background: transparent; border: 2px solid var(--ys5-magenta); color: var(--ys5-magenta); padding: 10px 22px; border-radius: var(--ys5-radius-xl); font-weight: 700; font-size: 14px; text-decoration: none; margin-top: 16px; transition: all .2s; }
.ys5-btn-out:hover { background: var(--ys5-magenta); color: #fff; }

/* === HERO === */
.ys5-hero {
    padding: 64px 20px 48px;
}
.ys5-hero-grid {
    max-width: var(--ys5-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
h1.ys5-headline {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
}
h1.ys5-headline span { color: var(--ys5-magenta); }
.ys5-hero-lead {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 28px;
    max-width: 520px;
}
.ys5-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.ys5-badge {
    background: rgba(232,0,232,.12);
    border: 1px solid var(--ys5-border);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ys5-magenta);
}
.ys5-hero-img {
    border-radius: var(--ys5-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(232,0,232,.2);
}
.ys5-hero-img img {
    width: 100%;
    border-radius: var(--ys5-radius-lg);
}

/* === TOC === */
.ys5-toc {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 24px 28px;
    max-width: var(--ys5-container);
    margin: 0 auto 48px;
}
.ys5-toc h2 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--ys5-magenta);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.ys5-toc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
.ys5-toc-grid a {
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color var(--ys5-transition);
}
.ys5-toc-grid a:hover { color: var(--ys5-magenta); }
.ys5-toc-grid a::before {
    content: "›  ";
    color: var(--ys5-magenta);
    font-weight: 900;
}

/* === CONTAINER === */
.ys5-wrap {
    max-width: var(--ys5-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === SECTIONS === */
.ys5-section {
    padding: 56px 20px;
}
.ys5-section-alt {
    background: #111;
}
.ys5-section-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.25;
}
.ys5-section-title span { color: var(--ys5-magenta); }
.ys5-section-lead {
    color: #aaa;
    margin-bottom: 36px;
    max-width: 680px;
    font-size: 1rem;
}

/* === SPORTS GRID === */
.ys5-sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ys5-sport-card {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: border-color var(--ys5-transition), background var(--ys5-transition);
}
.ys5-sport-card:hover {
    border-color: var(--ys5-magenta);
    background: rgba(232,0,232,.07);
}
.ys5-sport-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--ys5-magenta);
}

/* === STEPS === */
.ys5-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.ys5-step {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.ys5-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ys5-magenta-dark), var(--ys5-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: var(--ys5-glow);
}
.ys5-step-body h3 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 6px;
}
.ys5-step-body p {
    font-size: 14px;
    color: #999;
}

/* === GAMES === */
.ys5-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.ys5-game-card {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ys5-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232,0,232,.25);
    border-color: var(--ys5-magenta);
}
.ys5-game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.ys5-game-body {
    padding: 20px;
}
.ys5-game-body h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.ys5-game-body p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}
.ys5-tag {
    display: inline-block;
    background: rgba(232,0,232,.12);
    border: 1px solid var(--ys5-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ys5-magenta);
    margin-bottom: 12px;
}

/* === REGISTRO === */
.ys5-registro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
.ys5-registro-steps { display: flex; flex-direction: column; gap: 16px; }
.ys5-rStep {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ys5-rNum {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ys5-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: var(--ys5-glow);
}
.ys5-rBody h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; }
.ys5-rBody p { font-size: 14px; color: #999; }
.ys5-registro-img {
    border-radius: var(--ys5-radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(232,0,232,.2);
}
.ys5-registro-img img {
    width: 100%;
    border-radius: var(--ys5-radius-lg);
}

/* === PAGOS === */
.ys5-payments-block {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 28px;
}
.ys5-pay-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.ys5-pay-icons img {
    height: 36px;
    max-width: 80px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    object-fit: contain;
}
.ys5-pay-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ys5-pay-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid var(--ys5-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ys5-magenta);
}
.ys5-pay-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: #ccc;
}
.ys5-pay-table tr:last-child td { border-bottom: none; }

/* === COMO JUGAR === */
.ys5-howto-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ys5-howto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 20px 22px;
    transition: border-color var(--ys5-transition);
}
.ys5-howto-item:hover { border-color: var(--ys5-magenta); }
.ys5-howto-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232,0,232,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ys5-magenta);
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
}
.ys5-howto-item h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; }
.ys5-howto-item p { font-size: 14px; color: #999; }

/* === BONOS === */
.ys5-bonos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.ys5-bono-card {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 28px 24px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ys5-bono-card:hover {
    transform: translateY(-4px);
    border-color: var(--ys5-magenta);
    box-shadow: 0 8px 30px rgba(232,0,232,.2);
}
.ys5-bono-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.ys5-bono-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.ys5-bono-card p { font-size: 14px; color: #999; margin-bottom: 16px; }
.ys5-bono-card .ys5-bono-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ys5-magenta);
    margin-bottom: 16px;
    display: block;
}

/* === GANAR === */
.ys5-tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.ys5-tip {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-left: 4px solid var(--ys5-magenta);
    border-radius: 0 var(--ys5-radius-lg) var(--ys5-radius-lg) 0;
    padding: 18px 22px;
    transition: background var(--ys5-transition);
}
.ys5-tip:hover { background: rgba(232,0,232,.06); }
.ys5-tip h3 { font-size: 15px; font-weight: 900; margin-bottom: 6px; }
.ys5-tip p { font-size: 14px; color: #999; }

/* === AUTHOR === */
.ys5-author {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: var(--ys5-container);
    margin: 0 auto 0;
}
.ys5-author-top {
    display: flex;
    gap: 20px;
    align-items: center;
}
.ys5-author img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ys5-magenta);
    flex-shrink: 0;
}
.ys5-author-meta h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.ys5-author-meta .ys5-author-role {
    font-size: 13px;
    color: var(--ys5-magenta);
    font-weight: 700;
}
.ys5-author-bio { font-size: 14px; color: #999; line-height: 1.7; }

/* === FAQ === */
.ys5-faq { display: flex; flex-direction: column; gap: 10px; }
.ys5-faq-item {
    background: var(--ys5-card);
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    overflow: hidden;
}
.ys5-faq-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 18px 22px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--ys5-transition);
}
.ys5-faq-btn:hover { color: var(--ys5-magenta); }
.ys5-faq-arrow {
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--ys5-magenta);
}
.ys5-faq-btn[aria-expanded="true"] .ys5-faq-arrow { transform: rotate(45deg); }
.ys5-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    font-size: 14px;
    color: #999;
    padding: 0 22px;
}
.ys5-faq-panel-inner { padding-bottom: 18px; }

/* === CTA BLOCK === */
.ys5-cta-block {
    background: linear-gradient(135deg, rgba(176,0,176,.35), rgba(232,0,232,.15));
    border: 1px solid var(--ys5-border);
    border-radius: var(--ys5-radius-lg);
    padding: 48px 28px;
    text-align: center;
    max-width: var(--ys5-container);
    margin: 0 auto;
}
.ys5-cta-block h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: 12px; }
.ys5-cta-block p { color: #bbb; margin-bottom: 28px; font-size: 1rem; }

/* === FOOTER === */
.ys5-footer {
    background: #080808;
    border-top: 1px solid var(--ys5-border);
    padding: 36px 20px 24px;
}
.ys5-footer-grid {
    max-width: var(--ys5-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.ys5-footer-logo img { height: 32px; margin-bottom: 12px; }
.ys5-footer-tagline { font-size: 13px; color: #666; }
.ys5-footer-nav h4 {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ys5-magenta);
    margin-bottom: 12px;
}
.ys5-footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.ys5-footer-nav a { font-size: 13px; color: #888; transition: color var(--ys5-transition); }
.ys5-footer-nav a:hover { color: #fff; }
.ys5-footer-bottom {
    max-width: var(--ys5-container);
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 12px;
    color: #555;
    line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* 768px */
@media (min-width: 768px) {
    h1.ys5-headline { font-size: 2.6rem; }
    .ys5-hero-grid { grid-template-columns: 1fr 1fr; }
    .ys5-toc-grid { grid-template-columns: repeat(2, 1fr); }
    .ys5-sports-grid { grid-template-columns: repeat(3, 1fr); }
    .ys5-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .ys5-games-grid { grid-template-columns: repeat(2, 1fr); }
    .ys5-registro-grid { grid-template-columns: 1fr 1fr; }
    .ys5-bonos-grid { grid-template-columns: repeat(2, 1fr); }
    .ys5-tips-grid { grid-template-columns: repeat(2, 1fr); }
    .ys5-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .ys5-author { flex-direction: row; align-items: flex-start; }
    .ys5-nav { display: flex; }
    .ys5-burger { display: none; }
    .ys5-header-cta { display: inline-block; font-size: 14px; padding: 10px 22px; }
}

/* 1024px */
@media (min-width: 1024px) {
    .ys5-hero { padding: 88px 20px 64px; }
    h1.ys5-headline { font-size: 3rem; }
    .ys5-sports-grid { grid-template-columns: repeat(4, 1fr); }
    .ys5-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .ys5-games-grid { grid-template-columns: repeat(3, 1fr); }
    .ys5-bonos-grid { grid-template-columns: repeat(3, 1fr); }
    .ys5-tips-grid { grid-template-columns: repeat(3, 1fr); }
    .ys5-section-title { font-size: 1.9rem; }
}

/* 1440px */
@media (min-width: 1440px) {
    h1.ys5-headline { font-size: 3.4rem; }
    .ys5-section { padding: 72px 20px; }
    .ys5-section-title { font-size: 2.1rem; }
    .ys5-howto-list { flex-direction: row; flex-wrap: wrap; }
    .ys5-howto-item { flex: 1 1 calc(33% - 16px); }
}
