/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a1628;
    --secondary-bg: #152238;
    --accent-bg: #1a2d47;
    --primary-yellow: #ffd700;
    --hover-yellow: #ffed4e;
    --text-primary: #ffffff;
    --text-secondary: #7c8a9e;
    --border-color: #1e3a5f;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(180deg, #1a2d47 0%, #0a1628 100%);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    margin-top: -5px;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.nav-list li a:hover {
    color: var(--primary-yellow);
    background: var(--accent-bg);
}

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

/* Banner Section */
.banner-section {
    padding: 20px 0;
    background: var(--primary-bg);
}

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

.promo-card-item {
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.95) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.promo-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.85) 0%, rgba(10, 22, 40, 0.75) 100%);
    z-index: 1;
}

.promo-card-1 {
    background-image: url('images/119157412644008178.webp');
}

.promo-card-2 {
    background-image: url('images/5988257451020789566.webp');
}

.promo-card-3 {
    background-image: url('images/1619819283334198817.webp');
}

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

.promo-card-content {
    z-index: 10;
    flex: 1;
    position: relative;
}

.promo-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.promo-title {
    color: #ffd700;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.2;
}

.promo-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-promo-yellow {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-promo-yellow:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--primary-bg) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    background: var(--secondary-bg);
    padding: 60px 20px;
    border-bottom: 2px solid var(--border-color);
}

.content-section h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin: 40px 0 20px 0;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
}

.content-section p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Big Wins Section */
.big-wins-section {
    padding: 30px 0;
    background: var(--primary-bg);
}

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

.section-header-wins h2 {
    font-size: 28px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wins-nav {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a2d47;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-arrow:hover {
    background: #254363;
    transform: scale(1.1);
    color: #fff;
}

.wins-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.wins-slider::-webkit-scrollbar {
    height: 8px;
}

.wins-slider::-webkit-scrollbar-track {
    background: var(--accent-bg);
    border-radius: 4px;
}

.wins-slider::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}

.win-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 280px;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.win-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.win-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.win-info {
    flex: 1;
    min-width: 0;
}

.win-game {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-player {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 6px;
}

.win-amount {
    color: #4ade80;
    font-size: 18px;
    font-weight: 900;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-login:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-join {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    box-shadow: var(--shadow-glow);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-join::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-join:hover::before {
    width: 300px;
    height: 300px;
}

.btn-join:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Pulse Animation for Join Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.sidebar-header h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--accent-bg);
}

.sidebar-menu li a:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateX(5px);
}

/* Sidebar Promo */
.sidebar-promo {
    margin-top: 30px;
}

.promo-card {
    background: var(--gradient-dark);
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.promo-card h4 {
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-promo {
    background: var(--gradient-gold);
    color: #000;
    display: block;
    width: 100%;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Games Section */
.games-section {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

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

.section-header h2 {
    font-size: 28px;
    color: var(--primary-yellow);
}

.view-toggle a {
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-toggle a.active,
.view-toggle a:hover {
    background: var(--gradient-gold);
    color: #000;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: var(--accent-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.game-card a {
    text-decoration: none;
    color: inherit;
}

.game-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
}

.game-title {
    padding: 15px;
    font-size: 14px;
    color: var(--text-primary);
    text-align: center;
    background: var(--secondary-bg);
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 30px;
}

.btn-secondary {
    background: var(--accent-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 15px 40px;
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--primary-yellow);
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-bg);
    padding: 60px 20px;
    margin: 30px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-yellow);
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--accent-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 2px solid var(--border-color);
    padding: 50px 20px 20px;
    margin-top: 50px;
}

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

.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.payment-methods {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }

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

    .nav-list {
        gap: 15px;
    }

    .nav-list li a {
        font-size: 14px;
    }

    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .win-card {
        min-width: 260px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-card-item {
        min-height: 180px;
        padding: 25px;
    }

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

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

    .wins-slider {
        gap: 10px;
    }

    .win-card {
        min-width: 250px;
    }

    .section-header-wins h2 {
        font-size: 22px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--secondary-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        border-right: 2px solid var(--border-color);
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: block;
        padding: 15px;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-login {
        display: none;
    }

    .btn-join {
        padding: 10px 20px;
        font-size: 14px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .games-section {
        padding: 20px 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .game-title {
        font-size: 12px;
        padding: 10px;
    }

    .btn-join {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container,
    .container-fluid {
        padding: 0 15px;
    }

    .promo-card-item {
        min-height: 160px;
        padding: 20px;
    }

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

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

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

    .wins-slider {
        gap: 8px;
    }

    .win-card {
        min-width: 220px;
        padding: 12px;
    }

    .win-card img {
        width: 70px;
        height: 70px;
    }

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

    .win-amount {
        font-size: 16px;
    }

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

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-yellow);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
    padding: 40px 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.hero-section h1 {
    font-size: 36px;
    color: var(--primary-yellow);
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Content Section */
.content-section {
    background: var(--primary-bg);
    padding: 60px 0;
}

.content-article {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.content-article h2 {
    color: var(--primary-yellow);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-article h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-article ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-article ul li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.content-article ul li::before {
    content: "→";
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-article ul li strong {
    color: var(--primary-yellow);
}

/* Content Tables */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--accent-bg);
    border-radius: 8px;
    overflow: hidden;
}

.content-table thead {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.content-table th {
    color: var(--primary-yellow);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.content-table td {
    color: var(--text-secondary);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.content-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Bonus Tables */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--accent-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bonus-table thead {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.bonus-table th {
    color: var(--primary-yellow);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.bonus-table td {
    color: var(--text-primary);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.bonus-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
    transition: background 0.3s ease;
}

/* Responsive adjustments for content sections */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }

    .content-section p {
        font-size: 1rem;
    }

    .content-article {
        padding: 25px;
        margin-bottom: 25px;
    }

    .content-article h2 {
        font-size: 24px;
    }

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

    .content-table {
        font-size: 14px;
    }

    .content-table th,
    .content-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 22px;
    }

    .content-article {
        padding: 20px;
    }

    .content-article h2 {
        font-size: 20px;
    }

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

    .content-table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
    }

    .content-table th,
    .content-table td {
        padding: 8px;
        white-space: nowrap;
    }
}
