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 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a1a1a;
    color: #fff;
}

.header {
    background: #2b2b2b;
    border-bottom: 1px solid #404040;
    position: relative;
    z-index: 1000;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo__star {
    color: #ff6b6b;
    margin: 0 2px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Search Bar */
.search {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    position: relative;
}

.search__input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}

.search__input::placeholder {
    color: #888;
}

.search__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--login {
    background: transparent;
    color: #fff;
    border: 1px solid #404040;
}

.btn--login:hover {
    background: #404040;
}

.btn--signup {
    background: #ff6b6b;
    color: #fff;
}

.btn--signup:hover {
    background: #ff5252;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #2b2b2b;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #404040;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu__nav {
    padding: 20px 0;
}

.nav-item {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #404040;
    transition: background-color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: #404040;
}

.nav-item--with-dropdown::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #888;
}

.nav-item--home::before {
    content: '🏠';
    margin-right: 10px;
}

.nav-item--promotions::before {
    content: '🎁';
    margin-right: 10px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .search {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .header__container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header__container {
        height: 50px;
    }

    .mobile-menu {
        width: 100%;
        left: -100%;
    }
}

/* Hero Banner */
.banner {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 50%, #C026D3 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    overflow: hidden;
}

/* Animated background elements */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape:nth-child(4) {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F093FB, #F5576C);
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.shape:nth-child(5) {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #FFE259, #FFA751);
    bottom: 10%;
    left: 25%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Sparkling effects */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
}

.sparkle:nth-child(6) { top: 25%; left: 30%; animation-delay: 0.5s; }
.sparkle:nth-child(7) { top: 70%; right: 40%; animation-delay: 1.2s; }
.sparkle:nth-child(8) { bottom: 30%; left: 50%; animation-delay: 2.1s; }
.sparkle:nth-child(9) { top: 40%; right: 25%; animation-delay: 0.8s; }
.sparkle:nth-child(10) { bottom: 60%; right: 60%; animation-delay: 1.8s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.subtitle {
    font-size: 1.5rem;
    color: #E5E7EB;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cta-button {
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(239, 68, 68, 0.8); }
    100% { box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4); }
}

.character {
    flex: 0 0 auto;
    position: relative;
    margin-left: 2rem;
}

.character-img {
    width: 300px;
    height: 350px;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.character-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
}

.crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.coins {
    position: absolute;
    bottom: -10px;
    left: -20px;
    right: -20px;
    display: flex;
    justify-content: space-around;
}

.coin {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

.coin:nth-child(even) {
    animation-direction: reverse;
    animation-delay: 0.5s;
}

@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .banner {
        min-height: 600px;
        padding: 1rem;
    }

    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .character {
        margin-left: 0;
    }

    .character-img {
        width: 250px;
        height: 300px;
    }

    .character-face {
        font-size: 6rem;
    }

    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .character-img {
        width: 200px;
        height: 250px;
    }

    .character-face {
        font-size: 4rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Content Container */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    z-index: 10;
    position: relative;
}

/* Welcome Bonus Card */
.bonus-card {
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 20;
    margin-bottom: 120px;
}

.hero-content h1 {
    color: #fff !important;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.bonus-card h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-crypto {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    opacity: 0.9;
}

.free-spins {
    font-size: 24px;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(45deg, #F59E0B, #EF4444);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
}



/* Awards Section */
.awards {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 5;
}

.award {
    background: rgba(139, 92, 246, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.award-year {
    color: #FFD700;
    font-weight: 700;
}

.award-title {
    color: #fff;
    font-size: 9px;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        padding: 20px 15px;
    }

    .bonus-card {
        padding: 30px 20px;
        margin-bottom: 100px;
    }

    .bonus-amount {
        font-size: 32px;
    }

    .free-spins {
        font-size: 18px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .awards {
        gap: 8px;
        bottom: 15px;
    }

    .award {
        padding: 6px 8px;
        min-width: 60px;
        font-size: 8px;
    }
}

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

    .bonus-card {
        margin-bottom: 80px;
    }

    .bonus-card h2 {
        font-size: 20px;
    }

    .bonus-amount {
        font-size: 28px;
    }

    .bonus-crypto {
        font-size: 20px;
    }

    .awards {
        display: none;
    }
}

/* Games Section */
.games-section {
    max-width: 1400px;
    margin: 40px auto;
    position: relative;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.star-icon {
    color: #ff6b6b;
    font-size: 32px;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-button {
    width: 44px;
    height: 44px;
    background: #404040;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #555;
    transform: translateY(-1px);
}

.nav-button:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.view-all-btn {
    background: #404040;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

/* Games Container */
.games-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
}

.games-container::-webkit-scrollbar {
    height: 8px;
}

.games-container::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.games-slider {
    display: flex;
    gap: 20px;
    width: fit-content;
    padding-bottom: 10px;
}

/* Game Card */
.game-card {
    width: 200px;
    height: 120px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 2;
}

/* Game Backgrounds */
.game-card.slot {
    background: url("../images/first-block/slot.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.limbo {
    background: url("../images/first-block/limbo.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.book-bonanza {
    background: url("../images/first-block/BookBonanza.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.plinko {
    background: url("../images/first-block/plinko.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.fate-olympus {
    background: url("../images/first-block/GoldLuckFateofOlympus.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.blackjack {
    background: url("../images/first-block/blackjack.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.game-card.crash {
    background: url("../images/first-block/crash.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

/* Game Content */
.game-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.game-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-multiplier {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-weight: 600;
}

/* Special Elements */
.limbo .game-icon {
    background: rgba(0, 210, 255, 0.3);
}

.slot .game-icon {
    background: rgba(255, 123, 0, 0.3);
}

/* Character for Book Bonanza */
.book-bonanza::after {
    content: '🦝';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    z-index: 4;
}

/* Plinko ball */
.plinko::after {
    content: '⚪';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    z-index: 4;
}

/* God character for Fate of Olympus */
.fate-olympus::after {
    content: '👴';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    z-index: 4;
}

/* Cards for Blackjack */
.blackjack::after {
    content: '🃏';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    z-index: 4;
}

/* Rocket for Crash */
.crash::after {
    content: '🚀';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    z-index: 4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .nav-controls {
        gap: 10px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

    .games-slider {
        gap: 15px;
    }

    .game-card {
        width: 160px;
        height: 100px;
    }

    .game-content {
        padding: 12px;
    }

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

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

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

@media (max-width: 480px) {

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

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

    .games-slider {
        gap: 12px;
    }

    .game-card {
        width: 140px;
        height: 90px;
    }

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

    .game-multiplier {
        font-size: 11px;
    }
}


/* Promotions Section */
.promotions-section {
    max-width: 1400px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Promotion Card */
.promo-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card.bonuz {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.promo-card.piggyz {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.promo-card.jackpotz {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

/* Original Feature Badge */
.feature-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    color: #000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 140px;
    text-align: center;
    top: 20px;
    right: -35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Game Logo */
.game-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.game-logo img {
    width: 60px;
    height: 60px;
}

.game-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Content */
.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-text {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

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

/* Winners List (Piggyz) */
.winners-list {
    list-style: none;
    margin: 20px 0;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.winner-item:last-child {
    border-bottom: none;
}

.winner-name {
    color: #e5e7eb;
}

.winner-amount {
    color: #fbbf24;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.winner-time {
    color: #9ca3af;
    font-size: 12px;
}

/* Jackpot Amounts */
.jackpot-list {
    margin: 20px 0;
}

.jackpot-item {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jackpot-item.mega {
    background: rgba(139, 92, 246, 0.4);
    border: 2px solid #8b5cf6;
}

.jackpot-label {
    font-size: 14px;
    font-weight: 600;
}

.jackpot-amount {
    font-size: 18px;
    font-weight: 900;
    color: #fbbf24;
}

.jackpot-amount.mega {
    font-size: 24px;
    color: #fff;
}

.fire-emoji {
    margin-left: 4px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #f59e0b, #eab308);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    margin-top: auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Decorative Elements */
.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
}

/* Game Icons */
.bonuz-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.piggyz-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ec4899, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.jackpotz-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

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

    .promo-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {

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

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

    .promo-text {
        font-size: 16px;
    }

    .feature-badge {
        padding: 6px 16px;
        font-size: 10px;
        width: 120px;
        top: 15px;
        right: -30px;
    }

    .jackpot-amount.mega {
        font-size: 20px;
    }

    .winner-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-card {
        padding: 20px;
        min-height: 200px;
    }

    .game-logo {
        gap: 8px;
        margin-bottom: 15px;
    }

    .bonuz-icon,
    .piggyz-icon,
    .jackpotz-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .game-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .promo-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .jackpot-item {
        padding: 10px 12px;
    }

    .jackpot-amount.mega {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .feature-badge {
        display: none;
    }
}

/* Bonuses Section */
.bonuses-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    line-height: 1.2;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Bonus Card */
.bonus-card {
    border-radius: 20px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 500px;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Backgrounds */
.bonus-card.level-up {
    background: linear-gradient(135deg, #10b981, #06d6a0);
    margin-bottom: 0;
}

.bonus-card.tournaments {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    margin-bottom: 0;
}

.bonus-card.mystery {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    margin-bottom: 0;
}

.bonus-card.vip {
    background: linear-gradient(135deg, #f97316, #ea580c);
    margin-bottom: 0;
}

/* Icon Container */
.bonus-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 80px;
    position: relative;
}

/* Card Title */
.bonus-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
    background: #404040;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.cta-button:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Decorative Elements */
.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {

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

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .bonus-card {
        padding: 40px 20px;
        min-height: 220px;
    }

    .bonus-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
        margin-bottom: 20px;
    }

    .bonus-title {
        font-size: 18px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .bonus-card {
        padding: 30px 20px;
        min-height: 200px;
    }

    .bonus-icon {
        width: 70px;
        height: 70px;
        font-size: 45px;
        margin-bottom: 15px;
    }

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

    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 24px;
    }

    .bonus-card {
        padding: 25px 15px;
        min-height: 180px;
    }

    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }

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

/* Footer Styles */
.footer {
    background: #0f0f23;
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
    border-top: 2px solid #6c5ce7;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #6c5ce7;
    padding-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-section ul li a:hover {
    color: #a29bfe;
    padding-left: 0.5rem;
}

.footer-section p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #a29bfe;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Top Games Section */
.top-games-section {
    max-width: 1400px;
    margin: 40px auto;
    position: relative;

}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.thumb-icon {
    color: #fbbf24;
    font-size: 32px;
}

.view-all-btn {
    background: #404040;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

/* Games Container */
.games-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
}

.games-container::-webkit-scrollbar {
    height: 8px;
}

.games-container::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.games-slider {
    display: flex;
    gap: 20px;
    width: fit-content;
    padding-bottom: 10px;
}

/* Game Card */
.game-card {
    position: relative;
    width: 180px;
    height: 253px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Game Images */
.game-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Game Titles */
.game-title {
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* New Badge */
.new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: #fff;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {

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

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

    .games-container {
        padding-bottom: 5px;
    }

    .games-container::-webkit-scrollbar {
        height: 6px;
    }

    .games-slider {
        gap: 15px;
    }

    .game-card {
        width: 150px;
        height: 216px;
    }

    .game-title {
        font-size: 12px;
        bottom: 6px;
        left: 10px;
        right: 10px;
    }

    .new-badge {
        top: 6px;
        right: 6px;
        padding: 2px 4px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 20px;
    }

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

    .games-container::-webkit-scrollbar {
        height: 4px;
    }

    .games-slider {
        gap: 12px;
    }

    .game-card {
        width: 120px;
        height: 216px;
    }

    .game-title {
        font-size: 10px;
        bottom: 4px;
        left: 8px;
        right: 8px;
    }

    .new-badge {
        top: 4px;
        right: 4px;
        padding: 2px 3px;
        font-size: 7px;
    }
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    margin-bottom: 30px;
    background-clip: text;
}

h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #10b981;
    border-bottom: 2px solid #404040;
    padding-bottom: 10px;
}

h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #06d6a0;
}

h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #22d3ee;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Links */
a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #06d6a0;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

ul li, ol li {
    font-size: 16px;
    color: #e5e7eb;
    margin-bottom: 8px;
    line-height: 1.6;
}

ul li {
    list-style-type: none;
    position: relative;
}

ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: -25px;
    top: 0;
}

ol li {
    margin-bottom: 10px;
}

/* Strong/Bold Text */
strong, b {
    color: #fff;
    font-weight: 700;
}

/* Blockquotes */
blockquote {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 60px;
    color: #10b981;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

blockquote p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #f3f4f6;
    margin-left: 30px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    background: #404040;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #404040;
}

table th,
table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #555;
    font-size: 14px;
}

table th {
    background: #333;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

table td {
    color: #e5e7eb;
}

table tr:hover {
    background: rgba(16, 185, 129, 0.1);
}

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

/* Code blocks */
code {
    background: #333;
    color: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

pre {
    background: #333;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border-left: 4px solid #10b981;
}

pre code {
    background: none;
    padding: 0;
}

section {
    margin-bottom: 50px;
}

section:last-child {
    margin-bottom: 0;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(45deg, #10b981, #06d6a0);
    margin: 40px 0;
    border-radius: 2px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

figure {
    margin: 25px 0;
    text-align: center;
}

figcaption {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 10px;
    font-style: italic;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #10b981, #06d6a0);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
    text-decoration: none;
}

.info-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.info-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.info-box.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

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

    h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }

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

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

    h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    p {
        font-size: 15px;
    }

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

    ul li, ol li {
        font-size: 15px;
    }

    table {
        min-width: 500px;
    }

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

    blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }

    blockquote p {
        font-size: 15px;
        margin-left: 25px;
    }
}

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

    h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

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

    h4 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    ul, ol {
        padding-left: 20px;
    }

    ul li, ol li {
        font-size: 14px;
    }

    table {
        min-width: 400px;
    }

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

    blockquote {
        padding: 15px 15px;
        margin: 15px 0;
    }

    blockquote::before {
        font-size: 40px;
        top: -5px;
        left: 10px;
    }

    blockquote p {
        font-size: 14px;
        margin-left: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin: 8px 3px;
    }
}

/* Content Sections Styles */
.content-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-left: 4px solid #6c5ce7;
    padding-left: 1rem;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #a29bfe;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #ddd;
}

.content-section ul li {
    list-style: none;
    position: relative;
}

.content-section ul li::before {
    content: "•";
    color: #6c5ce7;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.5rem;
}

.content-section ol li {
    font-weight: 500;
    color: #ddd;
}

.content-section strong {
    color: #ffffff;
    font-weight: 700;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    background: #16213e;
}

.content-section table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
}

.content-section table th,
.content-section table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #2d3748;
}

.content-section table th {
    background: #6c5ce7;
    color: #ffffff;
    font-weight: 600;
}

.content-section table td {
    color: #ddd;
    background: #16213e;
}

.content-section table tr:hover td {
    background: #1e2a47;
}

.content-section table p {
    margin: 0;
    color: inherit;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

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

    .content-section ul, .content-section ol {
        padding-left: 1.5rem;
    }

    .content-section li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .table-container {
        margin: 1.5rem -1rem;
        border-radius: 0;
    }

    .content-section table th,
    .content-section table td {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 0.8rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }

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

    .content-section li {
        font-size: 0.95rem;
    }

    .content-section table th,
    .content-section table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}