html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header-container, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header-container, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #00894f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00894f;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00894f;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    padding: 10px 24px;
    background: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: #00894f;
    color: #00894f;
}

.btn-register {
    padding: 10px 24px;
    background: linear-gradient(135deg, #00894f 0%, #00b965 100%);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 79, 0.3);
}

.btn-register:hover {
    background: linear-gradient(135deg, #009958 0%, #00c970 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 137, 79, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    background: #fff;
    padding: 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}

.mobile-nav-link:hover {
    color: #00894f;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.mobile-actions .btn-login,
.mobile-actions .btn-register {
    text-align: center;
    display: block;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        top: 60px;
    }

    .mobile-menu-content {
        max-height: calc(100vh - 60px);
    }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
}

.banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    background: linear-gradient(135deg, #0a3d2e 0%, #1a5c47 50%, #0a3d2e 100%);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 30%, rgba(139, 195, 74, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(46, 125, 50, 0.2) 0%, transparent 50%);
    filter: blur(60px);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 50%;
}

.banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
}

.banner-button:hover {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.5);
}

.banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.banner-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.time-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

@media (max-width: 1024px) {
    .banner-content {
        max-width: 60%;
        padding: 40px;
    }

    .banner h1 {
        font-size: 38px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-image {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 350px;
    }

    .banner-content {
        max-width: 100%;
        padding: 30px;
        text-align: center;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .banner-image {
        width: 100%;
        opacity: 0.3;
        position: absolute;
    }

    .banner-dots {
        left: 50%;
        transform: translateX(-50%);
    }

    .time-badge {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 300px;
    }

    .banner-content {
        padding: 25px;
    }

    .banner h1 {
        font-size: 26px;
    }

    .banner-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .banner-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

.container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 10px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.header-container h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.games-section {
    display: flex;
    gap: 20px;
    position: relative;
}

.featured-game {
    flex: 0 0 450px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}

.featured-game:hover {
    transform: scale(1.02);
}

.featured-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.featured-info h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.featured-info p {
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.games-grid-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    background: #f5f5f5;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.badge.hot {
    background-color: #ff1744;
    color: #fff;
    top: 8px;
    right: 8px;
}

.badge.top {
    background-color: #d946ef;
    color: #fff;
    top: 8px;
    left: 8px;
}

.badge.tournament {
    background-color: #00e676;
    color: #000;
    top: 8px;
    left: 8px;
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.game-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.game-provider {
    color: #e0e0e0;
    font-size: 11px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    pointer-events: all;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-btn:hover {
    background: #fff;
}

.nav-btn.prev {
    margin-left: -20px;
}

.nav-btn.next {
    margin-right: -20px;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #4ade80;
}

@media (max-width: 1200px) {
    .games-section {
        flex-direction: column;
    }

    .featured-game {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-container h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .featured-game {
        height: 250px;
    }

}

.header-container {
    margin-bottom: 20px;
}

.header-container h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.sports-wrapper {
    position: relative;
    margin-top: 30px;
}

.sports-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.sports-container::-webkit-scrollbar {
    display: none;
}

.sport-card {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sport-card:hover {
    transform: translateY(-5px);
}

.sport-card.soccer {
    background: linear-gradient(135deg, #00a651 0%, #00d563 100%);
}

.sport-card.tennis {
    background: linear-gradient(135deg, #d946ef 0%, #f472b6 100%);
}

.sport-card.basketball {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
}

.sport-card.volleyball {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
}

.sport-card.table-tennis {
    background: linear-gradient(135deg, #c026d3 0%, #e879f9 100%);
}

.sport-card.baseball {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.sport-card.boxing {
    background: linear-gradient(135deg, #ef4444 0%, #fb923c 100%);
}

.sport-card.cybersport {
    background: linear-gradient(135deg, #a5f3fc 0%, #e0e7ff 100%);
}

.sport-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
}

.sport-card.cybersport .sport-title {
    color: #000;
}

.sport-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.calendar-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.calendar-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background 0.3s;
}

.nav-button:hover {
    background: #fff;
}

.nav-button.prev {
    left: -20px;
}

.nav-button.next {
    right: -20px;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #333;
}

@media (max-width: 768px) {
    .sport-card {
        flex: 0 0 140px;
        height: 140px;
    }

    .sport-icon {
        width: 70px;
        height: 70px;
        font-size: 55px;
    }

    .header-container h2 {
        font-size: 20px;
    }

    .nav-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .sport-card {
        flex: 0 0 130px;
        height: 130px;
        padding: 15px;
    }

    .sport-title {
        font-size: 14px;
    }

    .sport-icon {
        width: 60px;
        height: 60px;
        font-size: 45px;
    }
}

.footer {
    background: linear-gradient(135deg, #00894f 0%, #00b965 100%);
    color: #fff;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.categories-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.category-item.active {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    color: #fff;
    border-color: #ff8c00;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.category-item.active:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7500 100%);
}

.category-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator {
    width: 1px;
    height: 24px;
    background: #e0e0e0;
    margin: 0 5px;
    flex-shrink: 0;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
}

.scroll-arrow:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
}

@media (max-width: 768px) {
    .category-item {
        padding: 10px 16px;
        font-size: 14px;
    }

    .category-icon {
        font-size: 18px;
    }

    .scroll-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .category-item {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.article-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 35px;
    margin-bottom: 16px;
    line-height: 1.4;
}

p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

ul {
    margin: 20px 0;
    padding-left: 25px;
}

ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 10px;
}

ul li::marker {
    color: #00894f;
    font-weight: 700;
}

.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 500px;
}

table thead tr {
    background: linear-gradient(135deg, #00894f 0%, #00b965 100%);
}

table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
}

table td {
    padding: 14px 20px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: #f9f9f9;
}

table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

a {
    color: #00894f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #00b965;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .article-container {
        padding: 40px;
    }

    h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    h3 {
        font-size: 22px;
        margin-top: 30px;
    }

    .table-wrapper {
        border-radius: 8px;
        margin: 20px -20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    .article-container {
        padding: 30px 25px;
        border-radius: 12px;
    }

    h2 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 14px;
    }

    p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    ul li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    table th,
    table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .table-wrapper {
        margin: 20px -25px;
        padding: 0 25px;
    }
}

@media (max-width: 480px) {

    .article-container {
        padding: 25px 20px;
        border-radius: 10px;
    }

    h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 14px;
    }

    h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    ul {
        padding-left: 20px;
    }

    ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    table th,
    table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    table {
        min-width: 450px;
    }

    .table-wrapper {
        margin: 15px -20px;
        padding: 0 20px;
    }
}

/* Scrollbar styles for tables */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #00894f;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #00b965;
}