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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 20px;
    background: #011111;
}

.casino-header {
    background: #0a1520;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: #a0b0c0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-signup {
    background: linear-gradient(135deg, #4169E1 0%, #2E5CB8 100%);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

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

.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 {
    display: none;
    background: #0f1f2f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #a0b0c0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

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

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-buttons a {
    text-align: center;
}

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

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .casino-header {
        padding: 15px 0;
    }

    .header-container {
        padding: 0 15px;
    }
}

.bonus-banner {
    max-width: 1400px;
    margin: 30px auto;
    background: linear-gradient(135deg, #0a2e2e 0%, #1a4d4d 100%);

    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 0 0 40px;
    border-radius: 16px;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.text-content {
    padding: 20px;
}

.badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 26px;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4169E1 0%, #2E5CB8 100%);
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.6);
    background: linear-gradient(135deg, #5179F1 0%, #3E6CC8 100%);
}

.image-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.banner-image {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

@media (max-width: 1024px) {
    .bonus-banner {
        height: 500px;
        padding: 0 30px;
        margin: 0 20px;
    }

    h1 {
        font-size: 44px;
    }

    .subtitle {
        font-size: 22px;
    }

    .banner-content {
        gap: 30px;
    }

    .banner-image {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .bonus-banner {
        height: 600px;
        padding: 30px 20px;
        margin: 0;
        border-radius: 12px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .text-content {
        padding: 10px;
    }

    h1 {
        font-size: 38px;
    }

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

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

    .image-content {
        justify-content: center;
        order: -1;
    }

    .banner-image {
        max-width: 70%;
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }

    .bonus-banner {
        height: 550px;
        padding: 25px 15px;
        border-radius: 10px;
    }

    h1 {
        font-size: 32px;
    }

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

    .badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

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

    .banner-image {
        max-width: 75%;
        max-height: 250px;
    }
}

.casino-footer {
    /*background: #0a1520;*/
    padding: 60px 20px 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-footer::before {
    display: none;
}

.footer-content {
    max-width: 1400px;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
}

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

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0b0c0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

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

.footer-info {
    color: #8a99a8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 700px;
}

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

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    color: #a0b0c0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.decoration-circle {
    display: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

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

    .footer-info {
        max-width: 100%;
    }

    .footer-badges {
        justify-content: center;
    }
}

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

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

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

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

    .badge-item {
        font-size: 11px;
        padding: 6px 12px;
    }
}


.promo-section {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.promo-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.promo-slider::-webkit-scrollbar {
    height: 8px;
}

.promo-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.promo-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.promo-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.promo-card {
    background: linear-gradient(135deg, #0d1f1f 0%, #1a2f2f 100%);
    border-radius: 16px;
    padding: 0 0 0 30px;
    min-width: 400px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.promo-content {
    flex: 1;
}

.promo-title {
    font-size: 14px;
    color: #a0b0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.promo-amount {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 16px;
    color: #a0b0c0;
    margin-bottom: 20px;
}

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

.btn-signup {
    background: linear-gradient(135deg, #4169E1 0%, #2E5CB8 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.5);
}

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

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

.promo-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1400px) {
    .promo-slider {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .promo-card {
        min-width: 340px;
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .promo-image {
        order: -1;
        width: 120px;
        height: 120px;
    }

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

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

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

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

    .btn-signup {
        padding: 10px 25px;
        font-size: 15px;
    }

    .btn-info {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

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

    .promo-image {
        width: 100px;
        height: 100px;
    }

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

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

.content-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #ffffff;
    line-height: 1.8;
}

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

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

.content-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.content-text p {
    font-size: 16px;
    color: #a0b0c0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-text strong {
    color: #ffffff;
    font-weight: 600;
}

.content-text ul,
.content-text ol {
    margin: 20px 0 30px 0;
    padding-left: 25px;
    list-style: disc;
}

.content-text ul li,
.content-text ol li {
    font-size: 16px;
    color: #a0b0c0;
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 5px;
}

.content-text ul li::marker {
    color: #4169E1;
}

.content-text ol li::marker {
    color: #4169E1;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

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

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.content-text table thead {
    background: rgba(255, 255, 255, 0.05);
}

.content-text table th {
    padding: 15px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(65, 105, 225, 0.3);
}

.content-text table td {
    padding: 15px 20px;
    font-size: 15px;
    color: #a0b0c0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-text table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

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

.content-text a {
    color: #4169E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: #5179F1;
    text-decoration: underline;
}

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

    .content-text h2 {
        font-size: 26px;
        margin-top: 40px;
    }

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

    .content-text p,
    .content-text ul li,
    .content-text ol li {
        font-size: 15px;
    }

    .content-text table th,
    .content-text table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

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

    .content-text h2 {
        font-size: 22px;
    }

    .content-text h3 {
        font-size: 18px;
    }

    .content-text p,
    .content-text ul li,
    .content-text ol li {
        font-size: 14px;
    }

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

    .content-text table th,
    .content-text table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}