/* =========================================================
   365-bet.es — Design System
   Brand: bet365 | Green #027B5B | Yellow #F9DC1C
   ========================================================= */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --green: #027B5B;
    --green-dark: #01533D;
    --green-light: #039970;
    --green-glow: rgba(2, 123, 91, 0.15);
    --yellow: #F9DC1C;
    --yellow-dark: #D4BA0A;
    --black: #080E0B;
    --black-2: #0E1A14;
    --black-3: #14231C;
    --card-bg: #101A15;
    --card-border: rgba(2, 123, 91, 0.25);
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.08);
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 32px rgba(2, 123, 91, 0.2);
    --trans: all 0.22s ease;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --container: 1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-90);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Accessibility ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 9999;
    background: var(--yellow);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(8, 14, 11, 0.97);
    border-bottom: 2px solid var(--green-dark);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
    flex-shrink: 0;
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--yellow);
    font-family: var(--font-head);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow);
}

.logo-text span:last-child {
    font-size: 12px;
    font-weight: 400;
    color: var(--white-50);
    letter-spacing: 3px;
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white-70);
    transition: var(--trans);
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--yellow);
    background: var(--green-glow);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    padding: 8px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    color: var(--white-70);
    font-size: 13px;
    font-weight: 600;
    transition: var(--trans);
    font-family: var(--font-head);
}

.btn-login:hover {
    border-color: var(--green);
    color: var(--white);
}

.btn-tracker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--trans);
    cursor: pointer;
}

.btn-tracker:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 8px;
    background: var(--black-3);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--black-2);
    border-bottom: 2px solid var(--green-dark);
    padding: 16px 20px;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--white-70);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--trans);
}

.mobile-nav a:hover {
    color: var(--yellow);
    background: var(--green-glow);
}

.mobile-nav .btn-tracker {
    justify-content: center;
    margin-top: 8px;
}

/* ── Mobile sticky CTA ──────────────────────────────────── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 12px 16px;
    background: linear-gradient(to top, var(--black) 60%, transparent);
}

.mobile-sticky .btn-tracker {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--trans);
    cursor: pointer;
    border: none;
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-yellow {
    background: var(--yellow);
    color: #000;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-outline-green {
    background: transparent;
    color: var(--green-light);
    border: 2px solid var(--green);
    padding: 10px 26px;
}

.btn-outline-green:hover {
    background: var(--green-glow);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ── Sections ────────────────────────────────────────────── */
section {
    padding: 80px 0;
}

.section-dark {
    background: var(--black-2);
}

.section-alt {
    background: var(--black-3);
}

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(249, 220, 28, 0.1);
    border: 1px solid rgba(249, 220, 28, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--yellow);
}

.section-desc {
    color: var(--white-70);
    font-size: 17px;
    max-width: 640px;
    margin-bottom: 40px;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--trans);
}

.card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--green-glow);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.card-desc {
    color: var(--white-70);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ── Grids ───────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── Hero (Homepage) ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 580px;
    background: linear-gradient(135deg, var(--black) 0%, #061410 60%, var(--black-2) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(2, 123, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    background: rgba(249, 220, 28, 0.08);
    border: 1px solid rgba(249, 220, 28, 0.2);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--yellow);
}

.hero-desc {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat-value {
    font-family: var(--font-head);
    font-size: 36px;
    color: var(--yellow);
    font-weight: 700;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--white-50);
    margin-top: 2px;
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
    background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--card-border);
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--green-light);
}

.breadcrumb-sep {
    color: var(--white-30);
}

.page-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.page-title span {
    color: var(--yellow);
}

.page-desc {
    font-size: 17px;
    color: var(--white-70);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ── Tables ──────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table caption {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--green-light);
    text-align: left;
    padding: 16px 20px 12px;
    background: var(--black-3);
    border-bottom: 1px solid var(--card-border);
    letter-spacing: 0.5px;
}

.data-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-50);
    background: var(--black-2);
    border-bottom: 1px solid var(--card-border);
}

.data-table td {
    padding: 14px 20px;
    font-size: 14.5px;
    color: var(--white-70);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--green-glow);
}

.data-table .highlight-row td {
    background: rgba(249, 220, 28, 0.04);
    color: var(--white);
}

.data-table .highlight-row td:first-child {
    border-left: 3px solid var(--yellow);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.badge-green {
    background: rgba(2, 123, 91, 0.15);
    color: var(--green-light);
    border: 1px solid rgba(2, 123, 91, 0.3);
}

.badge-yellow {
    background: rgba(249, 220, 28, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(249, 220, 28, 0.25);
}

.badge-red {
    background: rgba(220, 50, 50, 0.12);
    color: #ef5555;
    border: 1px solid rgba(220, 50, 50, 0.25);
}

/* ── SVG Charts ──────────────────────────────────────────── */
.chart-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.chart-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.chart-subtitle {
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 24px;
}

.chart-svg {
    width: 100%;
    overflow: visible;
}

.bar-fill {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Progress bars */
.progress-row {
    margin-bottom: 16px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-name {
    font-size: 14px;
    color: var(--white-70);
}

.progress-val {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--yellow);
    font-weight: 700;
}

.progress-track {
    height: 8px;
    background: var(--white-10);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(to right, var(--green), var(--green-light));
}

/* ── Rating stars ────────────────────────────────────────── */
.stars {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-num {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--yellow);
    font-weight: 700;
}

/* ── SEO Article ─────────────────────────────────────────── */
.seo-content {
    background: var(--black-2);
}

.seo-article {
    max-width: 860px;
    margin: 0 auto;
    color: var(--white-70);
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 40px 0 16px;
    line-height: 1.2;
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--green-light);
    margin: 28px 0 12px;
}

.seo-article p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}

.seo-article ul {
    margin: 12px 0 20px 24px;
}

.seo-article ul li {
    margin-bottom: 8px;
    font-size: 15.5px;
    color: var(--white-70);
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.seo-article ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-light);
}

.seo-article strong {
    color: var(--white);
    font-weight: 700;
}

.text-link {
    color: var(--green-light);
    text-decoration: underline;
    text-decoration-color: rgba(2, 153, 112, 0.3);
}

.text-link:hover {
    color: var(--yellow);
    text-decoration-color: rgba(249, 220, 28, 0.5);
}

/* ── Author Box ──────────────────────────────────────────── */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--black-3);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--green);
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green-glow);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--green-light);
}

.author-name {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}

.author-role {
    font-size: 13px;
    color: var(--green-light);
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.6;
    margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--black-2);
    border-top: 1px solid var(--card-border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    color: var(--white-50);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--white-30);
    line-height: 1.6;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--white-50);
    font-size: 14px;
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--white-30);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--white-30);
}

.footer-legal a:hover {
    color: var(--white-50);
}

.footer-age {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 50, 50, 0.15);
    border: 2px solid rgba(220, 50, 50, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 13px;
    color: #ef5555;
    font-weight: 700;
}

/* ── Odds Widget ──────────────────────────────────────────── */
.odds-strip {
    background: var(--black-3);
    border-top: 3px solid var(--green);
    padding: 12px 0;
    overflow: hidden;
}

.odds-ticker {
    display: flex;
    gap: 32px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.odds-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.odds-match {
    font-size: 13px;
    color: var(--white-70);
}

.odds-val {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--yellow);
    background: rgba(249, 220, 28, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius);
}

/* ── Breadcrumb (page) ────────────────────────────────────── */
.page-breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
    background: var(--black-2);
}

/* ── Misc ────────────────────────────────────────────────── */
.text-yellow {
    color: var(--yellow);
}

.text-green {
    color: var(--green-light);
}

.divider {
    height: 1px;
    background: var(--card-border);
    margin: 32px 0;
}

.highlight-box {
    background: rgba(2, 123, 91, 0.08);
    border: 1px solid rgba(2, 123, 91, 0.2);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 20px 0;
}

.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--green), var(--yellow));
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--yellow);
    font-weight: 700;
    line-height: 1;
}

.bonus-label {
    font-size: 13px;
    color: var(--white-50);
    margin-top: 4px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-wrap {
        width: 45%;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-actions .btn-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-sticky {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .hero-image-wrap {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-image {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    section {
        padding: 52px 0;
    }

    .author-box {
        flex-direction: column;
    }

    .data-table th,
    .data-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .container {
        padding: 0 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-title {
        font-size: 32px;
    }

    .data-table th {
        font-size: 11px;
        padding: 10px 10px;
    }

    .data-table td {
        padding: 10px 10px;
        font-size: 12.5px;
    }
}
.author-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
