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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #333;
    background: #e5d7ff;
    min-height: 100vh;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #1e3a8a;
    border-bottom: 1px solid #1e40af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: none;
}

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

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav a:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

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



/* Button Styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #1e40af;
    color: white;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #4b5563;
}

.btn-secondary:hover {
    background: rgba(75, 85, 99, 0.1);
    border-color: #6b7280;
}

.btn-bonus {
    background: #ec4899;
    color: white;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-bonus:hover {
    background: #db2777;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.btn-play {
    background: #8b5cf6;
    color: white;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.btn-play:hover {
    background: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    padding: 0;
    width: 100%;
}

.hero h2 {
    color: #000000;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: none;
    animation: none;
    font-family: 'Inter', sans-serif;
}

.hero-content > div {
    color: #000000;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: none;
    animation: none;
    font-family: 'Inter', sans-serif;
}

.bonus-details {
    color: #1e40af;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
}

/* Navigation Menu */
.nav-menu {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.menu-list a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.menu-list a:hover {
    color: #1f2937;
    background: rgba(31, 41, 55, 0.1);
}

/* Hero Categories */
.hero-categories {
    background: #d8b4fe;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #7c3aed;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 200px;
    height: 45px;
    flex: 1;
}

.category-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(124, 58, 237, 0.3);
}

.category-btn.active {
    background: #7c3aed;
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(124, 58, 237, 0.3);
}

.category-icon {
    font-size: 1.2rem;
    color: #ffffff;
}

.category-text {
    white-space: nowrap;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.85rem;
}

/* Games Section */
.games-section {
    padding: 30px 0;
    background: transparent;
}

/* Games Header */
.games-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.games-icon {
    font-size: 2rem;
}

.games-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

.games-header > div {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 0 auto;
}

.game-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    width: 150px;
    height: 200px;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.game-image {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.game-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

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



.game-card h3 {
    color: #1f2937;
    font-size: 0.85rem;
    margin: 12px 8px;
    text-shadow: none;
    font-weight: 600;
    line-height: 1.3;
    padding: 4px 0;
}

.game-card > div {
    color: #1f2937;
    font-size: 0.85rem;
    margin: 12px 8px;
    text-shadow: none;
    font-weight: 600;
    line-height: 1.3;
    padding: 4px 0;
}

/* Bonuses Section */
.bonuses-section {
    padding: 40px 0;
    background: transparent;
}

/* Bonuses Header */
.bonuses-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bonuses-icon {
    font-size: 1.2rem;
}

.bonuses-section h2 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

.bonuses-header > div {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

/* Bonuses List */
.bonuses-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.bonus-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    display: flex;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.bonus-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

/* Brand Section */
.bonus-brand {
    background: #1e40af;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.clover-icon {
    font-size: 1rem;
}

.brand-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1px;
}

/* Bonus Content */
.bonus-content {
    padding: 15px;
    flex: 1;
}

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

.bonus-header h3 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.bonus-header > div {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 10px;
}

.star-icon {
    font-size: 0.75rem;
}

.rating-text {
    color: #92400e;
    font-weight: 700;
    font-size: 0.7rem;
}

/* Bonus Offer */
.bonus-offer {
    background: #f0f9ff;
    border: 2px dashed #0ea5e9;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #374151;
}

.highlight {
    color: #dc2626;
    font-weight: 700;
}

/* Bonus Terms */
.bonus-terms {
    margin-bottom: 12px;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    color: #6b7280;
    font-size: 0.8rem;
}

.term-icon {
    font-size: 0.6rem;
}

/* Bonus Button */
.btn-bonus {
    background: #ec4899;
    color: white;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.3);
    font-weight: 700;
    margin-bottom: 8px;
}

.btn-bonus:hover {
    background: #db2777;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

/* Bonus Disclaimer */
.bonus-disclaimer {
    color: #9ca3af;
    font-size: 0.7rem;
    font-style: italic;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: transparent;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

table th,
table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

table th {
    background: #1e40af;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    background: #ffffff;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

table tr:hover td {
    background: #f8fafc;
}

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

/* List Styles */
.main-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.main-content ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    margin-bottom: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #7c3aed;
    transition: all 0.3s ease;
}

.main-content ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left-color: #1e40af;
}

.main-content ul li::before {
    content: "▶";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c3aed;
    font-size: 0.8rem;
    font-weight: bold;
}

.main-content ul li:hover::before {
    color: #1e40af;
}

.main-content ul li em {
    color: #1e40af;
    font-style: italic;
    font-weight: 500;
}

/* Ordered List Styles */
.main-content ol {
    margin: 20px 0;
    padding-left: 0;
    counter-reset: item;
}

.main-content ol li {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
    counter-increment: item;
}

.main-content ol li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left-color: #059669;
}

.main-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #10b981;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.main-content ol li:hover::before {
    background: #059669;
}

.table-of-contents {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 0 25px;
    margin-bottom: 18px;
}

.table-of-contents h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: none;
}

.toc-header > div {
    color: #1f2937;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: none;
}

.toc-icon {
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 6px;
}

.toc-icon:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.1);
}

.toc-content {
    padding: 0 25px 25px 25px;
    transition: all 0.3s ease;
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
}

.toc-content.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0 25px;
}



.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
}

.toc-number {
    background: #1e40af;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toc-list a {
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toc-list a:hover {
    color: #8b5cf6;
    background: none;
    transform: translateX(3px);
}

.main-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.main-content h1 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: none;
}

.main-content h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    text-shadow: none;
}

.main-content p {
    color: #374151;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.main-content ul, .main-content ol {
    color: #374151;
    margin: 20px 0 20px 30px;
    line-height: 1.7;
}

.main-content li {
    margin-bottom: 10px;
}

.main-content strong {
    color: #8b5cf6;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: none;
}

.faq-section > div {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: #1e40af;
    color: #ffffff;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #1d4ed8;
}

.faq-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-text {
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    background: #f9fafb;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1e3a8a;
    border-top: 1px solid #1e40af;
    padding: 20px 0 10px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-shadow: none;
}

.footer-section > div {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-shadow: none;
}

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

.footer-section li {
    margin-bottom: 4px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1px 0;
    display: inline-block;
    font-size: 0.8rem;
}

.footer-section a:hover {
    color: #8b5cf6;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.8rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .logo {
        flex-direction: row;
        gap: 8px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-content > div {
        font-size: 2.5rem;
    }
    
    .hero-banner-image {
        height: 350px;
    }
    
    .hero-categories {
        padding: 12px 0;
    }
    
    .category-btn {
        width: 140px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .game-card {
        width: 150px;
        height: 200px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .bonuses-list {
        gap: 15px;
    }
    
    .bonus-card {
        padding: 15px;
    }
    
    .bonus-brand {
        min-width: 80px;
        padding: 12px 8px;
    }
    
    .table-of-contents {
        margin-bottom: 30px;
    }
    
    .toc-header {
        padding: 20px 20px 0 20px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .main-content h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .main-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .main-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .main-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .faq-section {
        padding: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .bonus-details {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .hero-banner-image {
        height: 300px;
    }
    
    .hero-categories {
        padding: 15px 0;
    }
    
    .game-categories {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        width: 140px;
        height: 38px;
        flex: none;
    }
    
    .category-icon {
        font-size: 1.1rem;
    }
    
    .category-text {
        font-size: 0.75rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .game-card {
        width: 150px;
        height: 200px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-card h3 {
        font-size: 0.75rem;
        margin: 10px 6px;
        padding: 3px 0;
    }
    
    /* Bonuses Section Mobile */
    .bonuses-list {
        width: 100%;
        gap: 12px;
    }
    
    .bonus-card {
        flex-direction: column;
    }
    
    .bonus-brand {
        min-width: auto;
        padding: 10px;
    }
    
    .bonus-content {
        padding: 15px;
    }
    
    .bonus-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .bonus-offer {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    /* Table of Contents Mobile */
    .toc-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 20px 20px 0 20px;
    }
    
    .toc-icon {
        align-self: flex-end;
        font-size: 1.3rem;
    }
    
    .toc-content {
        padding: 0 20px 20px 20px;
    }
    
    .toc-content.collapsed {
        padding: 0 20px;
    }
    
    .toc-list li {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .toc-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .toc-list a {
        font-size: 0.9rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-icon {
        font-size: 1.1rem;
    }
    
    .faq-text {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section li {
        margin-bottom: 6px;
    }
    
    .footer-section a {
        font-size: 0.85rem;
        padding: 2px 0;
    }
    
    .footer-bottom {
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .live-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    /* Mobile Table and List Styles */
    .table-wrapper {
        margin: 15px 0;
        border-radius: 8px;
    }
    
    table {
        font-size: 0.8rem;
        min-width: 500px;
    }
    
    table th,
    table td {
        padding: 10px 12px;
        white-space: nowrap;
    }
    
    table th {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    table td {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    
    .main-content ul li {
        padding: 8px 0 8px 25px;
        font-size: 0.8rem;
    }
    
    .main-content ul li::before {
        left: 8px;
        font-size: 0.7rem;
    }
    
    .main-content ol li {
        padding: 8px 0 8px 30px;
        font-size: 0.8rem;
    }
    
    .main-content ol li::before {
        left: 8px;
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }
    
    .logo {
        flex-direction: row;
        gap: 6px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .bonus-details {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-banner-image {
        height: 250px;
    }
    
    .hero-categories {
        padding: 12px 0;
    }
    
    .game-categories {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
        width: 120px;
        height: 32px;
        flex: none;
    }
    
    .category-icon {
        font-size: 1rem;
    }
    
    .category-text {
        font-size: 0.7rem;
    }
    
    .btn-bonus {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-card {
        width: 150px;
        height: 200px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-card h3 {
        font-size: 0.65rem;
        margin: 8px 4px;
        padding: 2px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        width: 150px;
        height: 200px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-logo {
        border-radius: 5px 5px 0 0;
    }
    
    /* FAQ Section Small Mobile */
    .faq-section {
        padding: 15px;
        margin-top: 25px;
    }
    
    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
    
    .faq-text {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 18px 0 8px;
    }
    
    .footer-content {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .footer-section li {
        margin-bottom: 3px;
    }
    
    .footer-section a {
        font-size: 0.7rem;
        padding: 1px 0;
    }
    
    .footer-bottom {
        padding-top: 6px;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .game-card h3 {
        font-size: 0.8rem;
        margin: 10px 8px;
        padding: 3px 0;
    }
    
    .game-card, .bonus-card {
        padding: 20px;
    }
    
    /* Bonuses Section Small Mobile */
    .bonuses-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .bonuses-section h2 {
        font-size: 1.8rem;
    }
    
    .bonus-card {
        border-radius: 10px;
    }
    
    .bonus-brand {
        padding: 10px;
    }
    
    .clover-icon {
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 0.8rem;
    }
    
    .bonus-content {
        padding: 15px;
    }
    
    .bonus-header h3 {
        font-size: 1.1rem;
    }
    
    .bonus-offer {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .btn-bonus {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .faq-section {
        padding: 25px;
    }
    
    /* Table of Contents Small Mobile */
    .toc-header {
        padding: 15px 15px 0 15px;
        gap: 12px;
    }
    
    .toc-icon {
        font-size: 1.2rem;
    }
    
    .toc-content {
        padding: 0 15px 15px 15px;
    }
    
    .toc-content.collapsed {
        padding: 0 15px;
    }
    
    .toc-list li {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .toc-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .toc-list a {
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Small Mobile Table and List Styles */
@media (max-width: 480px) {
    table {
        font-size: 0.75rem;
        margin: 12px 0;
    }
    
    table th,
    table td {
        padding: 8px 10px;
    }
    
    .main-content ul li {
        padding: 6px 0 6px 20px;
        font-size: 0.75rem;
    }
    
    .main-content ul li::before {
        left: 6px;
        font-size: 0.6rem;
    }
    
    .main-content ol li {
        padding: 6px 0 6px 25px;
        font-size: 0.75rem;
    }
    
    .main-content ol li::before {
        left: 6px;
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    /* Mobile Div Styles */
    .hero-content > div {
        font-size: 1.8rem;
    }
    
    .games-header > div {
        font-size: 1.3rem;
    }
    
    .bonuses-header > div {
        font-size: 1.2rem;
    }
    
    .bonus-header > div {
        font-size: 0.9rem;
    }
    
    .toc-header > div {
        font-size: 1.1rem;
    }
    
    .faq-section > div {
        font-size: 1.5rem;
    }
    
    .footer-section > div {
        font-size: 0.85rem;
    }
    
    /* Enhanced Mobile Styles */
    .hero-banner-image {
        height: 300px;
    }
    
    .hero-categories {
        padding: 10px 0;
    }
    
    .category-btn {
        width: 120px;
        height: 32px;
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    
    .category-icon {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-image {
        height: 80px;
    }
    
    .game-card > div {
        font-size: 0.8rem;
        margin: 10px 8px;
        padding: 3px 0;
    }
    
    .bonuses-list {
        gap: 12px;
    }
    
    .bonus-card {
        padding: 12px;
        flex-direction: column;
    }
    
    .bonus-brand {
        min-width: 100%;
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .bonus-content {
        width: 100%;
    }
    
    .bonus-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bonus-terms {
        flex-direction: column;
        gap: 6px;
    }
    
    .table-of-contents {
        margin-bottom: 20px;
    }
    
    .toc-header {
        padding: 15px 15px 0 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .main-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .main-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .main-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .main-content h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .main-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .faq-section {
        padding: 15px;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .faq-question {
        padding: 10px 12px;
    }
    
    .faq-answer {
        padding: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-section {
        margin-bottom: 15px;
    }
    
    .footer-section > div {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .footer-section ul {
        gap: 4px;
    }
    
    .footer-section li {
        margin-bottom: 4px;
    }
    
    .footer-section a {
        font-size: 0.8rem;
        padding: 2px 0;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    /* Touch-friendly improvements */
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .category-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .faq-question {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .toc-icon {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improved text readability */
    .main-content {
        line-height: 1.6;
    }
    
    .main-content p {
        line-height: 1.5;
    }
    
    /* Better spacing for mobile */
    .games-section,
    .bonuses-section,
    .content-section {
        padding: 20px 0;
    }
    
    .hero {
        padding: 0;
    }
    
    /* Improved table responsiveness */
    .table-wrapper {
        margin: 10px 0;
        border-radius: 6px;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.7rem;
        min-width: 400px;
    }
    
    table th,
    table td {
        padding: 6px 8px;
        word-wrap: break-word;
        white-space: nowrap;
    }
    
    table th {
        font-size: 0.65rem;
        padding: 6px 6px;
        background: #1e40af;
        color: #ffffff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    table td {
        font-size: 0.6rem;
        padding: 6px 6px;
        background: #ffffff;
        color: #374151;
        line-height: 1.3;
    }
    
    table tr:hover td {
        background: #f8fafc;
    }
    
    /* Mobile table scroll indicator */
    .table-wrapper::after {
        content: "← Swipe to see more →";
        display: block;
        text-align: center;
        font-size: 0.6rem;
        color: #6b7280;
        padding: 5px 0;
        background: #f3f4f6;
        border-radius: 0 0 6px 6px;
    }
    
    /* Better list spacing */
    .main-content ul li,
    .main-content ol li {
        margin-bottom: 6px;
        padding: 8px 0 8px 20px;
    }
    
    .main-content ul li::before {
        left: 6px;
        font-size: 0.6rem;
    }
    
    .main-content ol li::before {
        left: 6px;
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    /* Mobile table alternative - card layout */
    @media (max-width: 480px) {
        .table-wrapper {
            overflow: visible;
        }
        
        table {
            display: block;
            width: 100%;
            min-width: auto;
        }
        
        table thead {
            display: none;
        }
        
        table tbody {
            display: block;
            width: 100%;
        }
        
        table tr {
            display: block;
            background: #ffffff;
            margin-bottom: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 12px;
        }
        
        table td {
            display: block;
            text-align: left;
            padding: 8px 0;
            border: none;
            white-space: normal;
            word-wrap: break-word;
        }
        
        table td:first-child {
            font-weight: 600;
            color: #1e40af;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        
        table td:last-child {
            color: #374151;
            font-size: 0.65rem;
            line-height: 1.4;
        }
        
        /* Hide scroll indicator for card layout */
        .table-wrapper::after {
            display: none;
        }
    }
}
