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

.header {
    background: linear-gradient(135deg, #2a3654 0%, #1e2538 100%);
    padding: 10px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

.header ul, ol {
    margin: 0 !important;
}

.header ul li {
    margin-bottom: 0;
}

.nav-menu li a {
    color: #a8b3cf;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ffffff;
}

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

.header-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-login:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.header-signup {
    background: #00ff87;
    color: #1a1d2e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-signup:hover {
    background: #00dd72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 135, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

.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);
}

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

    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #2a3654 0%, #1e2538 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(168, 179, 207, 0.1);
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .header-login,
    .header-signup {
        width: 100%;
        text-align: center;
    }
}

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

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

    .header-nav {
        width: 280px;
    }
}

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

    .header-logo {
        font-size: 18px;
    }

    .header-nav {
        width: 100%;
    }
}

.banner {
    background: linear-gradient(135deg, #2d3250 0%, #1a1d2e 100%);
    border-radius: 20px;
    padding: 0  0 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 20px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.banner-label {
    color: #a8b3cf;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.banner h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signup {
    background: #00ff87;
    color: #1a1d2e;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-signup:hover {
    background: #00dd72;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 135, 0.3);
}

.btn-info {
    background: rgba(168, 179, 207, 0.2);
    color: #a8b3cf;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 179, 207, 0.3);
}

.btn-info:hover {
    background: rgba(168, 179, 207, 0.3);
    border-color: rgba(168, 179, 207, 0.5);
}

.banner-image {
    flex: 0 0 auto;
    max-width: 500px;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

@media (max-width: 1024px) {
    .banner {
        padding: 30px;
    }

    .banner h1 {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 30px;
    }

    .banner-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

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

    .banner h1 {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 28px;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-image {
        max-width: 350px;
        order: -1;
    }
}

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

    .banner h1 {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .btn-signup {
        padding: 14px 30px;
        font-size: 14px;
    }

    .banner-image {
        max-width: 100%;
    }
}

.cards-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deposit-card {
    background: linear-gradient(135deg, #2a3654 0%, #1e2538 100%);
    border-radius: 16px;
    padding: 10px 0 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deposit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-text {
    flex: 1;
    z-index: 2;
}

.card-badge {
    color: #a8b3cf;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.deposit-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.card-spins {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-btn {
    background: #00ff87;
    color: #1a1d2e;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-btn:hover {
    background: #00dd72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 135, 0.3);
}

.card-info {
    background: rgba(168, 179, 207, 0.2);
    color: #a8b3cf;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 179, 207, 0.3);
}

.card-info:hover {
    background: rgba(168, 179, 207, 0.3);
    border-color: rgba(168, 179, 207, 0.5);
}

.card-visual {
    flex: 0 0 auto;
    width: 140px;
    position: relative;
    z-index: 1;
}

.card-visual img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .deposit-card {
        padding: 25px;
    }

    .deposit-card h3 {
        font-size: 20px;
    }

    .card-visual {
        width: 120px;
    }
}

@media (max-width: 480px) {

    .deposit-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .card-visual {
        width: 150px;
        order: -1;
    }

    .deposit-card h3 {
        font-size: 22px;
    }

    .card-actions {
        justify-content: center;
    }

    .card-btn {
        padding: 12px 24px;
    }
}


.footer {
    background: linear-gradient(135deg, #1e2538 0%, #151a28 100%);
    padding: 60px 40px 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(168, 179, 207, 0.1);
}

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

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: #a8b3cf;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-links a:hover {
    color: #00ff87;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(168, 179, 207, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #7a8599;
    font-size: 14px;
    line-height: 1.6;
}

.footer-payment {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-title {
    color: #a8b3cf;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(168, 179, 207, 0.1);
    color: #a8b3cf;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 179, 207, 0.2);
}

.payment-icon:hover {
    background: rgba(168, 179, 207, 0.2);
    border-color: rgba(168, 179, 207, 0.3);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    background: rgba(168, 179, 207, 0.1);
    color: #a8b3cf;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 179, 207, 0.2);
}

.social-link:hover {
    background: #00ff87;
    color: #1a1d2e;
    border-color: #00ff87;
    transform: translateY(-3px);
}

.footer-info {
    color: #7a8599;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 30px;
    padding: 25px;
    background: rgba(168, 179, 207, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00ff87;
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 30px 25px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-payment {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .payment-methods {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 15px;
        margin-top: 50px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


.trending-section {
    max-width: 1400px;
    margin: 40px auto;
}

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

.trending-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

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

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

.view-all-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
}

.trending-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

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

.trending-container::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 20px;
}

.trending-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.trending-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.trending-grid {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.game-card {
    position: relative;
    width: 180px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

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

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00ff87;
    color: #1a1d2e;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.game-favorite:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: #ff4d4d;
    transform: scale(1.1);
}

.game-favorite svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.game-favorite:hover svg {
    fill: #ff4d4d;
    stroke: #ff4d4d;
}

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

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

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

@media (max-width: 1400px) {
    .trending-grid {
        display: flex;
    }
}

@media (max-width: 768px) {
    .trending-section {
        padding: 0;
    }

    .trending-header {
        padding: 0 10px;
        margin-bottom: 20px;
    }

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

    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .trending-container {
        padding: 0 10px 15px;
    }

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

@media (max-width: 480px) {
    .trending-title {
        font-size: 20px;
    }

    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

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

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

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

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

h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
    line-height: 1.3;
}

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

h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 35px;
    line-height: 1.3;
}

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

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

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

li {
    color: #a8b3cf;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
}

li::marker {
    color: #00ff87;
}

.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    background: rgba(42, 54, 84, 0.3);
    padding: 2px;
}

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

.table-container::-webkit-scrollbar-track {
    background: rgba(168, 179, 207, 0.1);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(168, 179, 207, 0.3);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 179, 207, 0.4);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: linear-gradient(135deg, #2a3654 0%, #1e2538 100%);
    border-radius: 12px;
    overflow: hidden;
}

thead tr {
    background: rgba(0, 255, 135, 0.1);
}

th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 16px 20px;
    border-bottom: 2px solid rgba(0, 255, 135, 0.3);
}

td {
    color: #a8b3cf;
    font-size: 15px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(168, 179, 207, 0.1);
}

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

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: rgba(0, 255, 135, 0.05);
}

a {
    color: #00ff87;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .content-wrapper {
        padding: 50px 30px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 20px;
    }

    h2 {
        font-size: 24px;
        margin-top: 40px;
    }

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

    p, li {
        font-size: 15px;
    }

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

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

    h2 {
        font-size: 22px;
        margin-top: 35px;
    }

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

    p, li {
        font-size: 14px;
    }

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

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

    table {
        min-width: 500px;
    }
}