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, 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, 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;
}

body {
    background: #1a1d29;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fff;
}

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

.header {
    background: #1a1d29;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: #fff;
}

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

.nav-link.active {
    color: #4CAF50;
}

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

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-signup {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-signup:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

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

.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 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1d29;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 1001;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.3);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn {
    padding: 15px 24px;
    text-align: center;
    font-size: 16px;
}

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

    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

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

    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 24px;
    }

    .mobile-menu {
        top: 60px;
        padding: 20px 15px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 12px;
    }

    .mobile-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

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

    .logo {
        font-size: 22px;
    }

    .hamburger span {
        width: 22px;
    }
}

.section {
    margin-bottom: 40px;
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all:hover {
    background: rgba(255, 255, 255, 0.15);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2d3a;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #fff;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.favorite-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.favorite-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .game-info {
        padding: 12px;
    }

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

    .game-provider {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .section-title {
        font-size: 20px;
    }

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

    .view-all {
        padding: 8px 16px;
        font-size: 12px;
    }

    .game-info {
        padding: 10px;
    }

    .game-title {
        font-size: 13px;
    }
}

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

.bets-section {
    background: #1e2130;
    border-radius: 12px;
    overflow: hidden;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #2a2d3a;
    padding: 0 20px;
    background: #1a1d29;
}

.tab {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab.active {
    color: #fff;
    border-bottom-color: #4CAF50;
}

.tabs-right {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bets-table {
    width: 100%;
    border-collapse: collapse;
}

.bets-table thead {
    background: #1a1d29;
}

.bets-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bets-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.bets-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.bets-table tbody td {
    padding: 16px 20px;
    white-space: nowrap;
}

.game-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    text-decoration: none;
}

.game-icon {
    font-size: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.player-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.bet-amount {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.multiplier {
    display: inline-block;
    padding: 6px 14px;
    background: #2962ff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.payout {
    font-size: 15px;
    font-weight: 700;
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }

    .tabs {
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        padding: 14px 20px;
        font-size: 14px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .tabs {
        padding: 0 10px;
    }

    .tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .tabs-right {
        gap: 8px;
    }

    .bets-table thead th {
        padding: 12px 15px;
        font-size: 11px;
    }

    .bets-table tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .game-cell {
        min-width: 200px;
        gap: 10px;
    }

    .game-icon {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .game-name {
        font-size: 13px;
    }

    .player-name {
        font-size: 13px;
    }

    .time {
        font-size: 12px;
    }

    .bet-amount {
        font-size: 12px;
        padding: 3px 10px;
    }

    .multiplier {
        font-size: 12px;
        padding: 5px 12px;
    }

    .payout {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .game-cell {
        min-width: 180px;
    }

    .game-icon {
        font-size: 24px;
        width: 32px;
        height: 32px;
    }

    .bets-table thead th,
    .bets-table tbody td {
        padding: 10px 12px;
    }
}

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

.promo-section {
    margin-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.promo-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-tag {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 4px;
}

.promo-footer {
    display: flex;
    align-items: center;
}

.promo-btn {
    padding: 12px 28px;
    background: #FFD700;
    color: #1a1d29;
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-btn:hover {
    background: #FFC700;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Стилі для першої карточки з h1 */
.promo-card:first-child .promo-title {
    font-size: 25px;
}

/* Responsive */
@media (max-width: 1200px) {
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .promo-card {
        height: 180px;
    }

    .promo-title {
        font-size: 28px;
    }

    .promo-card:first-child .promo-title {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card {
        height: 200px;
    }
}

@media (max-width: 768px) {

    .promo-grid {
        gap: 12px;
    }

    .promo-card {
        height: 160px;
    }

    .promo-content {
        padding: 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-card:first-child .promo-title {
        font-size: 22px;
    }

    .promo-subtitle {
        font-size: 13px;
    }

    .promo-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .promo-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 600px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promo-card {
        height: 180px;
    }

    .promo-title {
        font-size: 26px;
    }

    .promo-card:first-child .promo-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {


    .promo-card {
        height: 160px;
    }

    .promo-content {
        padding: 16px;
    }

    .promo-title {
        font-size: 22px;
    }

    .promo-card:first-child .promo-title {
        font-size: 22px;
    }

    .promo-subtitle {
        font-size: 12px;
    }

    .promo-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.footer {
    background: #1a1d29;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    line-height: 1.6;
}

.footer-link:hover {
    color: #4CAF50;
    padding-left: 5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
}

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

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

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

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #4CAF50;
}

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

.payment-icon {
    width: 50px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #4CAF50;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
}

.license-badge:hover {
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer {
        padding: 50px 0 25px;
    }
}

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

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

    .footer-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .payment-methods {
        gap: 12px;
    }

    .payment-icon {
        width: 45px;
        height: 30px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 35px 0 20px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-copyright,
    .footer-bottom-link {
        font-size: 13px;
    }

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

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-main {
        gap: 25px;
        margin-bottom: 30px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        width: 42px;
        height: 28px;
        font-size: 16px;
    }
}

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

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

/* Typography */
.article-container h1,
.article-container h2,
.article-container h3,
.article-container h4,
.article-container h5,
.article-container h6 {
    color: #fff;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-container h1 {
    font-size: 42px;
    color: #FFD700;
    margin-top: 0;
}

.article-container h2 {
    font-size: 32px;
    color: #4CAF50;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    padding-bottom: 12px;
}

.article-container h3 {
    font-size: 24px;
    color: #fff;
    margin-top: 30px;
}

.article-container h2 strong,
.article-container h3 strong {
    font-weight: 700;
}

.article-container p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-container p strong {
    color: #FFD700;
    font-weight: 600;
}

.article-container em {
    color: #4CAF50;
    font-style: italic;
}

.article-container a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s;
}

.article-container a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Lists */
.article-container ol,
.article-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-container li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-container ol li {
    list-style-type: decimal;
}

.article-container ul li {
    list-style-type: disc;
}

/* Tables */
.article-container .table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    background: #1a1d29;
    -webkit-overflow-scrolling: touch;
}

.article-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.article-container thead {
    background: rgba(76, 175, 80, 0.1);
}

.article-container th {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #4CAF50;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.article-container td {
    padding: 14px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-container tbody tr {
    transition: background 0.2s;
}

.article-container tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.article-container td p {
    margin: 0;
}

.article-container td strong {
    color: #fff;
    font-weight: 600;
}

/* Blockquotes */
.article-container blockquote {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 4px;
}

.article-container blockquote p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* FAQ Section */
.article-container .faq-item {
    background: #1a1d29;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #4CAF50;
}

.article-container .faq-question {
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.article-container .faq-answer {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Highlight Boxes */
.article-container .highlight-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.article-container .highlight-box h3 {
    margin-top: 0;
    color: #4CAF50;
}

/* Step List */
.article-container .step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.article-container .step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.article-container .step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

/* Divider */
.article-container hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 50px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 40px 15px;
    }

    .article-container h1 {
        font-size: 32px;
    }

    .article-container h2 {
        font-size: 26px;
    }

    .article-container h3 {
        font-size: 20px;
    }

    .article-container p,
    .article-container li,
    .article-container td {
        font-size: 15px;
    }

    .article-container .table-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }

    .article-container table {
        font-size: 14px;
    }

    .article-container th,
    .article-container td {
        padding: 12px 15px;
    }

    .article-container ol,
    .article-container ul {
        padding-left: 25px;
    }

    .article-container .step-list li {
        padding-left: 45px;
    }

    .article-container .step-list li::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .article-container .highlight-box {
        padding: 20px;
    }

    .article-container .faq-item {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 30px 10px;
    }

    .article-container h1 {
        font-size: 28px;
    }

    .article-container h2 {
        font-size: 22px;
    }

    .article-container h3 {
        font-size: 18px;
    }

    .article-container p,
    .article-container li,
    .article-container td {
        font-size: 14px;
    }

    .article-container table {
        font-size: 13px;
    }

    .article-container th,
    .article-container td {
        padding: 10px 12px;
    }
}