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: 1200px;
    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 */
.hero-banner {
    position: relative;
    min-height: 500px;
    background: url('../images/banner.jpg') no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.7;
}

.coin {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.gem {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FF69B4, #8A2BE2);
    clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}

.bubble {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 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: 1200px) {
    .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 {
    background: #2c2c2c;
    padding: 40px 20px 20px;
    border-top: 1px solid #404040;
}

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

/* Footer Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #404040;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: #10b981;
}

/* Badges */
.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    width: 40px;
    height: 40px;
    background: #404040;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Age Rating Badge */
.badge.age-rating {
    background: #555;
    border: 2px solid #888;
    font-size: 12px;
    font-weight: 700;
    width: 45px;
    height: 45px;
}

/* Gamcare Badge */
.badge.gamcare {
    background: #10b981;
    font-size: 12px;
    font-weight: 700;
    width: 50px;
    height: 40px;
}

/* AGA Badge */
.badge.aga {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    font-size: 10px;
    font-weight: 700;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1.1;
}

/* GCB Badge */
.badge.gcb {
    background: #10b981;
    font-size: 10px;
    font-weight: 700;
    width: 50px;
    height: 40px;
    text-align: center;
    line-height: 1.1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Copyright */
.copyright {
    color: #888;
    font-size: 13px;
    line-height: 1.1;
    margin-bottom: 10px;
}

/* Description */
.footer-description {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    max-width: 800px;
}

.footer-description a {
    color: #10b981;
    text-decoration: none;
}

.footer-description a:hover {
    text-decoration: underline;
}

/* Footer Left */
.footer-left {
    flex: 1;
}

/* Footer Right */
.footer-right {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-badges {
        gap: 12px;
    }
}

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

    .footer-top {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .footer-links {
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

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

    .footer-badges {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

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

    .copyright {
        font-size: 12px;
    }

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

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

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

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

    .footer-badges {
        gap: 8px;
    }

    .badge {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .badge.age-rating {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .badge.gamcare {
        width: 45px;
        height: 35px;
        font-size: 11px;
    }

    .badge.aga,
    .badge.gcb {
        width: 40px;
        height: 40px;
        font-size: 9px;
    }

    .copyright {
        font-size: 11px;
        text-align: center;
    }

    .footer-description {
        font-size: 10px;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .footer-links {
        gap: 8px;
    }

    .footer-link {
        font-size: 11px;
        padding: 5px;
    }

    .footer-badges {
        gap: 6px;
    }

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

    .badge.age-rating {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

    .badge.gamcare {
        width: 40px;
        height: 32px;
        font-size: 10px;
    }

    .badge.aga,
    .badge.gcb {
        width: 35px;
        height: 35px;
        font-size: 8px;
    }
}

/* 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;
}

/* Sections */
section {
    margin-bottom: 50px;
}

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

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

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

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

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

/* Buttons */
.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;
}

/* Cards/Info boxes */
.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;
    }
}