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, sans-serif;
    background-color: #1a1d2e;
    color: #fff;
}

/* Header Styles */
header {
    background: #0f1119;
    border-bottom: 1px solid #2a2d3e;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 40px
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s;
}

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

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

.btn-login {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-signup {
    padding: 10px 24px;
    background: #00ff88;
    border: none;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-signup:hover {
    background: #00e67a;
    transform: translateY(-1px);
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f1119;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 9;
}

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

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

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #2a2d3e;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: #00ff88;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-buttons .btn-login,
.mobile-buttons .btn-signup {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .nav-menu,
    .header-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

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

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        top: 60px;
    }
}


.promo-banner {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin:30px auto 40px;
    height: 200px;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    gap: 10px;
}

.promo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    text-decoration: none;
    color: white;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.promo-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Welcome Package Section */
.welcome-section {
    background: url("../images/banner1.webp") no-repeat center center;
    background-size: cover;
}

/* Weekly Cashback Section */
.cashback-section {
    background: url("../images/banner2.webp") no-repeat center center;
    background-size: cover;
}

/* Highroller Bonus Section */
.highroller-section {
    background: url("../images/banner3.webp") no-repeat center center;
    background-size: cover;
}

.promo-tag {
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.promo-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-code {
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.sign-up-btn {
    background: #fbbf24;
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.sign-up-btn:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        height: auto;
    }

    .promo-section {
        height: 200px;
    }

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


.top-games-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

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

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

.view-all-btn .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

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

.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130%;
    background: #252840;
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
}

.game-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.3;
}

.game-provider {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prerelease-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00ff88;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

@media (max-width: 1200px) {
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 968px) {
    .section-header h2 {
        font-size: 28px;
    }

    .games-container {
        display: flex;
        overflow-x: auto;
        grid-template-columns: none;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .games-container::-webkit-scrollbar {
        display: none;
    }

    .game-card {
        flex: 0 0 160px;
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .top-games-section {
        padding: 0 15px;
    }

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

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

    .view-all-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .game-card {
        flex: 0 0 140px;
    }

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

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


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

.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #2a2d3e;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #8b8ea5;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.tab.active {
    color: #fff;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ff88;
}

.header-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 20px;
    font-size: 14px;
    color: #8b8ea5;
    font-weight: 500;
}

.bet-item {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 18px 20px;
    background: #252840;
    margin-bottom: 8px;
    border-radius: 8px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.bet-item:hover {
    background: #2d3049;
}

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

.game-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
}

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

.player-name {
    color: #fff;
    font-size: 14px;
}

.time {
    color: #8b8ea5;
    font-size: 14px;
}

.bet-amount {
    background: #3d4161;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.multiplier {
    background: #4169e1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
}

.payout {
    color: #00ff88;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .header-row,
    .bet-item {
        grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 968px) {
    .header-row {
        display: none;
    }

    .bet-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .game-cell {
        grid-column: 1;
    }

    .bet-item > div:not(.game-cell) {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bet-item > div:not(.game-cell)::before {
        content: attr(data-label);
        color: #8b8ea5;
        font-size: 13px;
    }

    .player-name::before {
        content: 'Player: ';
    }

    .time::before {
        content: 'Time: ';
    }

    .bet-amount::before {
        content: 'Bet: ';
    }

    .multiplier::before {
        content: 'Multiplier: ';
    }

    .payout::before {
        content: 'Payout: ';
    }
}

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

    .tabs {
        gap: 15px;
    }

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

    .bet-item {
        padding: 15px;
    }

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

/* Footer Styles */
footer {
    background: #0f1119;
    margin-top: 60px;
    padding: 50px 0 30px;
    border-top: 1px solid #2a2d3e;
}

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

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

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: #8b8ea5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2a2d3e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-text {
    color: #8b8ea5;
    font-size: 13px;
}

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

.footer-bottom-links a {
    color: #8b8ea5;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #00ff88;
}

@media (max-width: 1200px) {
    .header-row,
    .bet-item {
        grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .header-row {
        display: none;
    }

    .bet-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .game-cell {
        grid-column: 1;
    }

    .bet-item > div:not(.game-cell) {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bet-item > div:not(.game-cell)::before {
        content: attr(data-label);
        color: #8b8ea5;
        font-size: 13px;
    }

    .player-name::before {
        content: 'Player: ';
    }

    .time::before {
        content: 'Time: ';
    }

    .bet-amount::before {
        content: 'Bet: ';
    }

    .multiplier::before {
        content: 'Multiplier: ';
    }

    .payout::before {
        content: 'Payout: ';
    }

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

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

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

    .tabs {
        gap: 15px;
    }

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

    .bet-item {
        padding: 15px;
    }

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

    footer {
        padding: 40px 0 20px;
    }
}

/* Content Container */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Typography */
h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 35px;
    margin-bottom: 18px;
    line-height: 1.4;
}

p {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.8;
}

strong {
    color: #fff;
    font-weight: 600;
}

/* Lists */
ul {
    margin: 25px 0;
    padding-left: 25px;
}

ul li {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

table tbody tr:first-child {
    background: #2d3049;
}

table tbody tr:first-child td {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

td {
    padding: 18px 20px;
    font-size: 15px;
    color: #c0c0c0;
    border-bottom: 1px solid #2a2d3e;
}

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

table tbody tr:not(:first-child):hover {
    background: #2a2d45;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-item {
    background: #252840;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #2a2d49;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 255, 136, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
    transition: all 0.3s;
}

.faq-icon::before {
    content: '+';
    color: #00ff88;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.faq-item.active .faq-icon {
    background: #00ff88;
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before {
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 22px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

/* Links */
a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #00e67a;
    text-decoration: underline;
}

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

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

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

    p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    ul li {
        font-size: 15px;
    }

    table {
        min-width: 600px;
    }

    td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

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

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
    }

    .faq-icon::before {
        font-size: 18px;
    }
}