:root {
    --green: #1a7a3c;
    --green-dark: #145f2e;
    --green-light: #e8f5ed;
    --gold: #f0a500;
    --gold-dark: #c8880a;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --bg: #f7f8f5;
    --white: #ffffff;
    --border: #e0e4da;
    --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*  */
/* 
/* BLOG WRAP */
.blog-wrap {
    max-width: 1800px;
    margin: 0 auto;
    padding: 48px 5%;
    margin-top: 25px;
}

/* POST HEADER */
.post-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
   
}

.post-cat {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 12px;
    border-radius: 20px;
}

h1 {
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 14px;
}

.post-meta {
    font-size: 18px;
    color: black;
    margin-bottom: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.intro-box {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 32px;

    color: var(--green-dark);
    line-height: 1.7;
}

h2 {
    color: var(--text);
    margin: 40px 0 12px;
    line-height: 1.2;
}

h3 {
    color: var(--green-dark);
    margin: 28px 0 8px;
}

p {
    color: black;
    margin-bottom: 18px;
    line-height: 1.6;
}

strong {
    color: var(--text);
    font-weight: 600;
}

/* COMPARE TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 1.4rem;
    overflow: hidden;
    border-radius: var(--radius);
}

.compare-table th {
    background: var(--green-dark);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1.3rem;
}

.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    color: black;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:nth-child(even) td {
    background: var(--bg);
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--text);
}

.win {
    color: var(--green);
    font-weight: 700;
}

.lose {
    color: #c0392b;
}

/* TIPSTER CARD */
.tipster-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.tipster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green);
}

.tipster-card.gold-top::before {
    background: var(--gold);
}

.tipster-icon {
    font-size: 28px;
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}

.tipster-info {
    flex: 1;
}

.tipster-name {
    color: var(--text);
    margin-bottom: 4px;
    margin-top: 0px;
}

.tipster-profit {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.tipster-desc {
    color: black;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tipster-cta-btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s;
}

.tipster-cta-btn:hover {
    background: var(--green-dark);
    text-decoration: none;
    color: white;
}

.tipster-card.gold-top .tipster-cta-btn {
    background: var(--gold);
    color: var(--text);
}

.tipster-card.gold-top .tipster-cta-btn:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* VERDICT BOX */
.verdict-box {
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 28px;
    margin: 32px 0;
}

.verdict-box h3 {
       color: var(--gold);
    margin-bottom: 10px;
}

.verdict-box p {
    color: rgba(255, 255, 255);
   line-height: 1.6;
    margin-bottom: 0;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #fff8e6;
    border: 1px solid #f0d080;
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0;
}

.highlight-box .hb-title {
    font-weight: 700;
    color: #8a6000;
    font-size: 22px;
    margin-bottom: 8px;
}

.highlight-box p {
    color: #6b5200;
    margin-bottom: 0;
}

/* INLINE CTA */
.inline-cta {
    background: var(--green-light);
    border: 1px solid #b8ddc6;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.inline-cta p {
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 0;
}

.inline-cta a {
    background: var(--green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.inline-cta a:hover {
    background: var(--green-dark);
    text-decoration: none;
}

/* CTA BLOCK */
.cta-block {
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    margin: 36px 0;
}

.cta-block h3 {
       color: #fff;
    margin-bottom: 8px;
}

.cta-block p {
    color: rgba(255, 255, 255);
      margin-bottom: 20px;
}

.cta-block a {
    background: var(--gold);
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
    padding: 13px 32px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-block a:hover {
    background: var(--gold-dark);
    color: #080000;
    text-decoration: none;
}

.ctabtn12{
    margin-top: 15px;
}

/* POST TAGS */
.post-tags {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kw-tag {
    display: inline-block;
    background: var(--bg);
    border: 1px solid var(--border);
    color: black;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}


@media (max-width:640px) {
    nav {
        padding: 0 4%;
    }

    .nav-links {
        display: none;
    }

    .blog-wrap {
        padding: 36px 4%;
    }

    .tipster-card {
        flex-direction: column;
        gap: 12px;
    }

    .cta-block {
        padding: 24px 18px;
    }

    .compare-table {
        font-size: 1rem !important;

    }

    .compare-table th {
        font-size: 1rem !important;
    }

    .kw-tag {
    display: inline-block;
    background: var(--bg);
    border: 1px solid var(--border);
    color: black;
    font-size: 1.2rem !important;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.ctabtn12{
    margin-top: -1px;
}


}