/* Winpot MX site-1 | prefix: wp- | font: Nunito | palette: #F53340 / #0F0F1E / #00C800 */
/* Mobile-first: 320 | 768 | 1024 | 1440 */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: #0F0F1E;
    color: #FFFFFF;
    line-height: 1.65;
    font-size: 16px;
    padding-bottom: 60px; /* promo bar */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== PROMO BAR ===== */
.wp-promo-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #F53340, #C01020);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
}
.wp-promo-bar span { color: #fff; }
.wp-promo-bar a {
    background: #00C800;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    font-size: 13px;
    transition: background 0.2s;
}
.wp-promo-bar a:hover { background: #009900; }
.wp-promo-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.wp-promo-close:hover { opacity: 1; }

/* ===== HEADER ===== */
.wp-header {
    position: sticky;
    top: 0;
    background: #0A0A18;
    z-index: 100;
    border-bottom: 2px solid #F53340;
}
.wp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
}
.wp-logo img { height: 40px; width: auto; }
.wp-nav { display: none; }
.wp-nav ul { list-style: none; display: flex; gap: 20px; }
.wp-nav a {
    color: #B0B0C0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}
.wp-nav a:hover { color: #F53340; }
.wp-btn-primary {
    display: inline-block;
    background: #00C800;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.wp-btn-primary:hover { background: #009900; transform: translateY(-1px); }
.wp-btn-secondary {
    max-width: 280px;
    display: inline-block;
    background: transparent;
    color: #F53340;
    border: 2px solid #F53340;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 16px;
}
.wp-btn-secondary:hover { background: #F53340; color: #fff; }
.wp-burger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.wp-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.2s;
}

/* ===== TOC ===== */
.wp-toc-wrap {
    background: #0A0A18;
    border-bottom: 1px solid #1E1E32;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.wp-toc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.wp-toc-label {
    color: #888;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.wp-toc-list {
    list-style: none;
    display: flex;
    gap: 0;
}
.wp-toc-list li a {
    display: block;
    color: #B0B0C0;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.wp-toc-list li a:hover { color: #F53340; background: #1E1E32; }

/* ===== LAYOUT HELPERS ===== */
.wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wp-section { padding: 60px 0; }
.wp-section-dark { background: #0A0A18; }
.wp-section-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}
.wp-section-title.wp-centered { text-align: center; }
.wp-section-sub {
    color: #B0B0C0;
    margin-bottom: 36px;
    font-size: 15px;
    max-width: 700px;
}
.wp-section-sub.wp-centered,
.wp-centered .wp-section-sub { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== HERO ===== */
.wp-hero-section { padding: 60px 0 40px; background: #0F0F1E; }
.wp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.wp-hero-badge {
    display: inline-block;
    background: #F53340;
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.wp-hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.wp-hero-title span { color: #F53340; }
.wp-hero-text { color: #B0B0C0; margin-bottom: 28px; font-size: 16px; }
.wp-hero-img img { border-radius: 12px; width: 100%; }

/* ===== SPLIT BLOCK ===== */
.wp-split-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.wp-split-img img { border-radius: 10px; width: 100%; }
.wp-split-text { display: flex; flex-direction: column; gap: 14px; }
.wp-split-text p { color: #B0B0C0; font-size: 15px; }

/* ===== SPORTS ICONS ===== */
.wp-sports-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}
.wp-sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #1A1A2E;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    transition: background 0.2s, transform 0.15s;
}
.wp-sport-item:hover { background: #2A1A2E; transform: translateY(-2px); }

/* ===== STEPS GRID ===== */
.wp-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.wp-step-card {
    background: #1A1A2E;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    border-left: 4px solid #F53340;
    transition: transform 0.15s;
}
.wp-step-card:hover { transform: translateX(4px); }
.wp-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F53340;
    opacity: 0.25;
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
}
.wp-step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.wp-step-card p { color: #B0B0C0; font-size: 14px; }

/* ===== GAME CATEGORIES ===== */
.wp-game-cats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}
.wp-cat-card {
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A2E;
    transition: transform 0.2s;
}
.wp-cat-card:hover { transform: translateY(-4px); }
.wp-cat-card img { width: 100%; height: 200px; object-fit: cover; }
.wp-cat-info { padding: 16px 20px; }
.wp-cat-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.wp-cat-info p { color: #888; font-size: 13px; }

/* ===== SUB SECTIONS ===== */
.wp-sub-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid #1E1E32; }
.wp-sub-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.wp-sub-section p { color: #B0B0C0; font-size: 15px; margin-bottom: 20px; }

/* ===== SLOTS GRID ===== */
.wp-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.wp-slot-thumb {
    background: #1A1A2E;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}
.wp-slot-thumb:hover { transform: scale(1.03); }
.wp-slot-thumb img { width: 100%; height: 90px; object-fit: cover; }
.wp-slot-thumb span { display: block; padding: 6px 4px; font-size: 11px; font-weight: 700; color: #ccc; }

/* ===== LIVE GRID ===== */
.wp-live-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.wp-live-card {
    background: #1A1A2E;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}
.wp-live-card:hover { transform: translateY(-3px); }
.wp-live-card img { width: 100%; height: 100px; object-fit: cover; }
.wp-live-card span { display: block; padding: 10px 8px; font-size: 13px; font-weight: 700; }

/* ===== TABLE GAMES ===== */
.wp-table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.wp-table-item {
    background: #1A1A2E;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}
.wp-table-item:hover { background: #2A1A2E; }
.wp-table-icon { font-size: 20px; color: #F53340; }

/* ===== CHECK LIST ===== */
.wp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}
.wp-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B0B0C0;
    font-size: 14px;
}
.wp-check-list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #00C800;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== PAYMENT ICONS ===== */
.wp-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 24px;
    background: #1A1A2E;
    border-radius: 12px;
}
.wp-payment-icons img,
.wp-spei-icon { height: 36px; max-width: 80px; background: #fff; padding: 4px 8px; border-radius: 6px; }
.wp-spei-icon { display: flex; align-items: center; }

/* ===== PAYMENT TABLES ===== */
.wp-payment-tables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.wp-pay-block h3 { font-size: 1.15rem; margin-bottom: 12px; }
.wp-pay-block p { color: #B0B0C0; font-size: 14px; margin-bottom: 16px; }
.wp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.wp-table th {
    background: #F53340;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
}
.wp-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #1E1E32;
    color: #B0B0C0;
}
.wp-table tr:hover td { background: #1A1A2E; }

/* ===== HOW TO PLAY ===== */
.wp-how-steps { display: flex; flex-direction: column; gap: 20px; }
.wp-how-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #1A1A2E;
    padding: 20px 24px;
    border-radius: 12px;
    transition: transform 0.15s;
}
.wp-how-item:hover { transform: translateX(4px); }
.wp-how-num {
    font-size: 2rem;
    font-weight: 900;
    color: #F53340;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}
.wp-how-content h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.wp-how-content p { color: #B0B0C0; font-size: 14px; }

/* ===== BONUS CARDS ===== */
.wp-bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.wp-bonus-card {
    background: #1A1A2E;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s;
}
.wp-bonus-card:hover { transform: translateY(-4px); }
.wp-bonus-card img { width: 100%; height: 200px; object-fit: cover; }
.wp-bonus-body { padding: 20px 24px; }
.wp-bonus-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.wp-bonus-body p { color: #B0B0C0; font-size: 14px; margin-bottom: 16px; }

/* ===== TIPS ===== */
.wp-tips-list { display: flex; flex-direction: column; gap: 16px; }
.wp-tip-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #1A1A2E;
    border-radius: 10px;
    font-size: 15px;
    color: #B0B0C0;
    line-height: 1.5;
}
.wp-tip-row strong { color: #fff; }
.wp-tip-icon { flex-shrink: 0; margin-top: 2px; }

/* ===== AUTHOR ===== */
.wp-author-section { background: #0A0A18; padding: 48px 0; }
.wp-author-card {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #1A1A2E;
    border-radius: 14px;
    padding: 28px;
}
.wp-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #F53340;
}
.wp-author-name { font-size: 1.1rem; font-weight: 900; margin-bottom: 4px; }
.wp-author-role { color: #F53340; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.wp-author-bio { color: #B0B0C0; font-size: 14px; line-height: 1.6; }

/* ===== FAQ ===== */
.wp-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wp-faq-item {
    background: #1A1A2E;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2A2A40;
}
.wp-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    transition: background 0.2s;
}
.wp-faq-btn:hover { background: #2A2A40; }
.wp-faq-btn h3 { font-size: 15px; font-weight: 700; color: #fff; flex: 1; margin: 0; }
.wp-faq-arrow {
    color: #F53340;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.wp-faq-btn[aria-expanded="true"] .wp-faq-arrow { transform: rotate(45deg); }
.wp-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.wp-faq-body p {
    padding: 0 20px 18px;
    color: #B0B0C0;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.wp-footer { background: #060612; padding: 40px 0 24px; border-top: 2px solid #1E1E32; }
.wp-footer-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.wp-footer-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.wp-footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}
.wp-footer-nav a:hover { color: #F53340; }
.wp-footer-disclaimer {
    padding: 20px;
    background: #0A0A18;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #F53340;
}
.wp-footer-disclaimer p { color: #888; font-size: 12px; line-height: 1.6; margin-bottom: 8px; }
.wp-footer-disclaimer p:last-child { margin-bottom: 0; }
.wp-18plus { color: #aaa !important; }
.wp-footer-copy { color: #555; font-size: 12px; text-align: center; }

/* Mobile nav open state */
.wp-nav.wp-nav-open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0A0A18;
    z-index: 200;
    padding: 80px 32px 32px;
}
.wp-nav.wp-nav-open ul { flex-direction: column; gap: 0; }
.wp-nav.wp-nav-open a { display: block; padding: 16px 0; font-size: 20px; border-bottom: 1px solid #1E1E32; }

/* ===== BREAKPOINT 768px ===== */
@media (min-width: 768px) {
    .wp-hero-inner { grid-template-columns: 1fr 1fr; }
    .wp-hero-title { font-size: 2.4rem; }
    .wp-split-block { grid-template-columns: 1fr 1fr; }
    .wp-split-reverse { direction: rtl; }
    .wp-split-reverse > * { direction: ltr; }
    .wp-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .wp-game-cats { grid-template-columns: repeat(3, 1fr); }
    .wp-live-grid { grid-template-columns: repeat(4, 1fr); }
    .wp-table-grid { grid-template-columns: repeat(4, 1fr); }
    .wp-payment-tables { grid-template-columns: 1fr 1fr; }
    .wp-bonus-cards { grid-template-columns: repeat(3, 1fr); }
    .wp-nav { display: flex; align-items: center; }
    .wp-burger { display: none; }
    .wp-slots-grid { grid-template-columns: repeat(6, 1fr); }
    .wp-section-title { font-size: 2rem; }
    .wp-footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== BREAKPOINT 1024px ===== */
@media (min-width: 1024px) {
    .wp-hero-title { font-size: 2.8rem; }
    .wp-section-title { font-size: 2.2rem; }
    .wp-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .wp-section { padding: 80px 0; }
}

/* ===== BREAKPOINT 1440px ===== */
@media (min-width: 1440px) {
    .wp-container { max-width: 1300px; }
    .wp-hero-title { font-size: 3.2rem; }
    .wp-section-title { font-size: 2.5rem; }
}
