:root {
    --bg-dark: #0c0c0c;
    --bg-card: #141414;
    --gold: #f5c542;
    --text-light: #eaeaea;
    --text-muted: #bdbdbd;
    --green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

section {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h1,
h2,
h3 {
    color: var(--gold);
    font-weight: 700;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
    text-align: center;
}

p {
    color: var(--text-muted);
    margin-top: 10px;
}

.hero {
    text-align: center;
    background: radial-gradient(circle at top, #1b1b1b, #000);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--green);
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.table {
    background: var(--bg-card);
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #222;
}

.row div {
    padding: 15px;
}

.row.header {
    background: #1e1e1e;
    font-weight: 600;
    color: var(--gold);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #000);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: #000;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
}


.hero {
    background: radial-gradient(circle at top, #1b1b1b, #000);
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    color: #f5c542;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.divider {
    width: 60px;
    height: 4px;
    background: #f5c542;
    margin: 20px auto;
    border-radius: 2px;
}

.hero p {
    max-width: 900px;
    margin: auto;
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
}

.highlight {
    color: #f5c542;
    font-weight: 600;
}

.btn {
    display: inline-block;
    margin: 20px 10px 0;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn.primary {
    background: #f5c542;
    color: #000;
}

.btn.secondary {
    background: #25d366;
    color: #000;
}


.trusted {
    background: linear-gradient(180deg, #0b0b0b, #000);
    padding: 70px 20px;
}

.trusted h2 {
    color: #f5c542;
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
}

.trusted p {
    color: #d5d5d5;
    max-width: 950px;
    margin: 0 auto 15px;
    font-size: 15px;
    line-height: 1.8;
}

.feature-list {
    max-width: 900px;
    margin: 20px auto;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 15px;
}

.highlight {
    color: #f5c542;
    font-weight: 600;
}

.trusted .btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}


.features-section {
    background: radial-gradient(circle at top, #111, #000);
    padding: 70px 20px;
}

/* Section title */
.section-title {
    text-align: center;
    color: #f5c542;
    font-size: 30px;
    margin-bottom: 30px;
}

/* Table wrapper */
.features-table {
    max-width: 1100px;
    margin: 0 auto;
    /* ✅ true centering */
    border: 1px solid #2a2a2a;
    background: #000;
}

/* Rows */
.table-row {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    border-bottom: 1px solid #2a2a2a;
}

.table-row:last-child {
    border-bottom: none;
}

/* Header row */
.table-head {
    background: #0f0f0f;
}

.table-head .col {
    text-align: center;
    /* ✅ header centered */
    font-weight: 600;
    color: #f5c542;
}

/* Cells */
.col {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Feature column */
.feature {
    border-right: 1px solid #2a2a2a;
    text-align: left;
    /* ✅ correct */
    font-weight: 500;
}

/* Description column */
.description {
    text-align: left;
    /* ✅ correct */
    color: #d5d5d5;
}

/* Highlight */
.highlight {
    color: #f5c542;
    font-weight: 600;
}

/* =====================
   MOBILE FIX
===================== */
@media (max-width: 480px) {

    .features-table {
        border: none;
    }

    .table-head {
        display: none;
    }

    .table-row {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid #2a2a2a;
        margin-bottom: 15px;
        border-radius: 6px;
        overflow: hidden;
    }

    .feature {
        border-bottom: 1px solid #2a2a2a;
        background: #111;
        font-weight: 600;
        text-align: left;
    }

    .description {
        text-align: left;
    }
}




/* Icon Card */

/* ===============================
   TRUST SECTION (FIXED & CENTERED)
================================ */
.trust-section {
    background: linear-gradient(180deg, #141414, #000);
    padding: 80px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Individual card */
.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image */
.trust-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 20px rgba(245, 197, 66, 0.35));
}

/* Title */
.trust-card h3 {
    color: #f5c542;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Text */
.trust-card p {
    color: #d0d0d0;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 260px;
}

/* CTA */
.trust-section .btn {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* why choose us  */


.why-choose {
    background: radial-gradient(circle at top, #0f0f0f, #000);
    padding: 80px 20px;
    /* text-align: center; */
}

.why-choose h2 {
    color: #f5c542;
    font-size: 32px;
    margin-bottom: 25px;
}

.why-choose h3 {
    color: #f5c542;
    font-size: 20px;
    margin: 35px 0 12px;
}

.why-choose p {
    color: #d5d5d5;
    font-size: 15.5px;
    line-height: 1.9;
    margin: 10px auto 15px;
    max-width: 1000px;
}

.why-choose .intro {
    margin-bottom: 30px;
}

.highlight {
    color: #f5c542;
    font-weight: 600;
}

.betting-list {
    margin: 15px 0 20px 20px;
    color: #e0e0e0;
    font-size: 15.5px;
}

.betting-list li {
    margin-bottom: 8px;
}

.why-choose .btn {
    margin-top: 30px;
}

@media (max-width: 480px) {

    .why-choose {
        padding: 55px 15px;
    }

    .why-choose h2 {
        font-size: 26px;
    }

    .why-choose h3 {
        font-size: 18px;
        margin-top: 28px;
    }

    .why-choose p {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .betting-list {
        margin-left: 15px;
        font-size: 14.5px;
    }
}