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 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    z-index: 200;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mobile-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.mobile-logo .dice {
    color: #ff6b35;
    margin-right: 8px;
    font-size: 18px;
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 107, 53, 0.2);
}

/* Sidebar adjustments for mobile */
.sidebar {
    width: 250px;
    background: linear-gradient(180deg, #2a2a3e, #1a1a2e);
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    z-index: 150;
    transition: transform 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 20px 30px;
    font-size: 24px;
    font-weight: bold;
}

.logo .dice {
    color: #ff6b35;
    margin-right: 10px;
}

.auth-buttons {
    padding: 0 20px 30px;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-signup {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
}

.btn-signin {
    background: linear-gradient(45deg, #ff6b35, #ff5722);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.freespins {
    background: linear-gradient(45deg, #ff6b35, #ff9800);
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin: 0 20px 20px;
    border-radius: 15px;
    font-weight: bold;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
}

.menu-item.active {
    background: rgba(255, 107, 53, 0.2);
    border-left-color: #ff6b35;
}

.menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background: #ff6b35;
    border-radius: 3px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff6b35, #ff9800, #ffeb3b);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.vip-badge {
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.hero-car {
    justify-self: end;
    z-index: 1;
}

.promo-card {
    width: 280px;
    height: 240px;
    background: linear-gradient(135deg, #ff6b35, #ff9800);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card .drops-title-small {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.promo-card .drops-subtitle-small {
    font-size: 11px;
    line-height: 1.2;
    color: white;
    opacity: 0.9;
    margin-bottom: 10px;
}

.promo-card .prize-amount-small {
    font-size: 24px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
    margin: 8px 0;
}

.promo-card .prize-period-small {
    font-size: 9px;
    color: white;
    opacity: 0.8;
    margin-bottom: 8px;
}

.promo-card .prize-given-small {
    font-size: 8px;
    color: white;
    opacity: 0.7;
    margin-bottom: 15px;
}

.promo-card .btn-small {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    width: fit-content;
}

.promo-card .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.treasure-items {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.treasure-item {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.treasure-item:nth-child(2) {
    animation-delay: 0.5s;
}

.treasure-item:nth-child(3) {
    animation-delay: 1s;
}

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

/* Mobile Promo Section */
.mobile-promo {
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.promo-tabs {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
}

.promo-tab {
    padding: 15px 30px;
    background: #3a3a4e;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.promo-tab.active {
    background: #ff6b35;
}

.promo-tab:hover {
    background: #ff6b35;
}

.drops-wins {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, #ff6b35, #ff9800);
    border-radius: 15px;
    margin-bottom: 30px;
}

.drops-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.prize-amount {
    font-size: 64px;
    font-weight: bold;
    color: #00ff00;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.prize-period {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Winners Section */
.winners-section {
    background: #2a2a3e;
    border-radius: 15px;
    padding: 20px;
}

.winners-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.winner-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.winner-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #ff9800);
    border-radius: 50%;
    margin-right: 15px;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.winner-game {
    font-size: 12px;
    opacity: 0.7;
}

.winner-amount {
    color: #00ff00;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .hero-car {
        justify-self: center;
    }

    .promo-card {
        width: 260px;
        height: 220px;
    }

    .promo-card .drops-title-small {
        font-size: 22px;
    }

    .promo-card .prize-amount-small {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        display: flex !important;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        padding-top: 80px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 70px 10px 10px;
    }

    .hero-banner {
        padding: 20px 15px;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .promo-card {
        width: 240px;
        height: 200px;
    }

    .promo-card .drops-title-small {
        font-size: 20px;
    }

    .promo-card .prize-amount-small {
        font-size: 16px;
    }

    .promo-card .drops-subtitle-small {
        font-size: 10px;
    }

    .promo-card .prize-period-small {
        font-size: 8px;
    }

    .promo-card .prize-given-small {
        font-size: 7px;
    }

    .treasure-items {
        position: static;
        justify-content: center;
        margin-top: 20px;
        transform: none;
    }

    .treasure-item {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .prize-amount {
        font-size: 48px;
    }

    .drops-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100%;
    }

    .hero-banner {
        padding: 15px 10px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .promo-card {
        width: 220px;
        height: 180px;
        padding: 15px;
    }

    .promo-card .drops-title-small {
        font-size: 18px;
    }

    .promo-card .prize-amount-small {
        font-size: 14px;
    }

    .promo-card .btn-small {
        padding: 8px 16px;
        font-size: 12px;
    }

    .main-content {
        padding: 70px 5px 10px;
    }
}

.menu-toggle {
    display: none;
}

/* Overlay for mobile menu */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Top Games Section */
.top-games-section {
    background: #2a2a3e;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
    gap: 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.game-card:nth-child(1) .game-image {
    background: url("../images/20BoostHot.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:nth-child(2) .game-image {
    background: url("../images/WildWestTrueways.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:nth-child(3) .game-image {
    background: url("../images/BookofDragonHoldAndWin.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}
.game-card:nth-child(4) .game-image {
    background: url("../images/3HotChillies.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:nth-child(5) .game-image {
    background: url("../images/RoyalExpressHoldandWin.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}
.game-card:nth-child(6) .game-image {
    background: url("../images/Clusteruck.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}
.game-card:nth-child(7) .game-image {
    background: url("../images/WolfGoneWildHoldAndWin.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:nth-child(8) .game-image {
    background: url("../images/ElephantsGoldBonusCombo.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:nth-child(9) .game-image {
    background: url("../images/AlohaKingElvis.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}
.game-card:nth-child(10) .game-image {
    background: url("../images/Joker.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}
.game-card:nth-child(11) .game-image {
    background: url("../images/BisonStorm.webp") no-repeat  0 0;
    background-size: cover;
    background-position: center center;
    height: 304px;

    @media(max-width: 1024px) {
        height: 140px;
    }
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.game-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-icon {
    font-size: 48px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    line-height: 1.2;
}

.game-provider {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.game-card.new-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent #ff6b35 transparent transparent;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .hero-car {
        justify-self: center;
    }

    .promo-card {
        width: 260px;
        height: 220px;
    }

    .promo-card .drops-title-small {
        font-size: 22px;
    }

    .promo-card .prize-amount-small {
        font-size: 18px;
    }

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

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

.content-section {
    background: #2a2a3e;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.content-section h2 {
    color: #ff6b35;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
}

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

.content-section h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section strong {
    color: #ff6b35;
    font-weight: bold;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

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

.content-section table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.content-section table tr:first-child td {
    background: rgba(255, 107, 53, 0.2);
    font-weight: bold;
    color: white;
}

.content-section table tr:hover {
    background: rgba(255, 107, 53, 0.1);
}

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

.content-section table tr:first-child p {
    color: white;
}


