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: #fff;
    color: #000;
}

.head-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.head-content__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.head-content__left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 24px;
    justify-content: space-between;
    padding: 3px 0;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 150px;

    @media (max-width: 768px) {
        width: 90px;
    }
}

.logo__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

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

.nav__link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #ff6b35;
}

.nav__link--active {
    color: #fff;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
}

.head-content__right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--login {
    background: transparent;
    color: #ccc;
    border: 1px solid #444;

    @media(max-width: 768px) {
        display: none !important;
    }
}

.btn--login:hover {
    color: #fff;
    border-color: #666;
}

.btn--register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn--register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.mobile-menu__title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.mobile-menu__icon {
    width: 24px;
    height: 24px;
    background: #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mobile-menu__items {
    list-style: none;
}

.mobile-menu__item {
    margin-bottom: 5px;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #ff6b35;
}

.mobile-menu__arrow {
    margin-left: auto;
    font-size: 12px;
}

.mobile-menu__footer {
    border-top: 1px solid #333;
    padding: 20px;
    margin-top: 30px;
}

.mobile-menu__footer-links {
    list-style: none;
}

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

.mobile-menu__footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.mobile-menu__footer-links a:hover {
    color: #ccc;
}

.badge {
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .head-content__container {
        padding: 0 15px;
    }

    .logo__text {
        display: none;
    }

    .btn--login {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

/* Content для демонстрації */
.main-content {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
}

.main-banner {
    background: linear-gradient(135deg, #2a1810 0%, #1a0d08 50%, #0f0604 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 60px; /* Відступ для фіксованого хедера */
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
            radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
}

.main-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-banner__content {
    color: #fff;
}

.main-banner__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-banner__description {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.main-banner__buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn--claim {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #1a1a1a;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn--claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn--terms {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.main-banner__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.coin-animation {
    width: 200px;
    height: 200px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.coin {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    border-radius: 50%;
    position: relative;
    box-shadow:
            0 0 30px rgba(255, 215, 0, 0.4),
            inset 0 5px 20px rgba(255, 255, 255, 0.3),
            inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.coin::before {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coin::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30%;
    height: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(8px);
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 35%; right: 10%; animation-delay: 1.5s; }

.disclaimer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #666;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
    z-index: 3;
    padding: 0 20px;
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .main-banner {
        min-height: 350px;
    }

    .main-banner__container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
        text-align: center;
    }

    .main-banner__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .main-banner__description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .main-banner__buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn--claim {
        padding: 12px 20px;
        justify-content: center;
        font-size: 14px;
    }

    .btn--terms {
        padding: 10px 16px;
        text-align: center;
        font-size: 13px;
    }

    .main-banner__visual {
        height: 200px;
    }

    .coin-animation {
        width: 120px;
        height: 120px;
    }

    .coin::before {
        font-size: 48px;
    }

    .disclaimer {
        padding: 0 15px;
        font-size: 9px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .main-banner {
        min-height: 320px;
    }

    .main-banner__container {
        padding: 25px 15px;
        gap: 25px;
    }

    .main-banner__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .main-banner__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-banner__visual {
        height: 150px;
    }

    .coin-animation {
        width: 100px;
        height: 100px;
    }

    .coin::before {
        font-size: 40px;
    }

    .disclaimer {
        font-size: 8px;
        bottom: 10px;
    }
}

.slots-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

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

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.section-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.view-all-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.view-all-btn:hover {
    background: #444;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #444;
}

.nav-btn:disabled {
    background: #222;
    color: #666;
    cursor: not-allowed;
}

.slots-list-container {
    position: relative;
    overflow: hidden;
}

.slots-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.slot-card {
    flex: 0 0 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.slot-image {
    width: 100%;
    height: 213px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
    transform: scale(1.05);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%
    );
    border-radius: 12px;
}

.slot-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-badge--new {
    background: #ff4444;
}

.slot-badge--hot {
    background: #ff6b35;
}

.jackpot-amount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slots-list {
        padding: 20px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .section-controls {
        align-self: flex-end;
    }

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

    .section-subtitle {
        font-size: 13px;
    }

    .slot-card {
        flex: 0 0 160px;
    }

    .slot-image {
        height: 154px;
    }

    .slots-grid {
        gap: 15px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slot-card {
        flex: 0 0 140px;
    }

    .slot-image {
        height: 154px;
    }

    .slots-grid {
        gap: 12px;
    }

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

    .slot-title {
        font-size: 12px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
}

/* Scrollbar hide */
.slots-list-container::-webkit-scrollbar {
    display: none;
}

.slots-list-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.footer__link:hover {
    color: #ff6b35;
}

.footer__license {
    grid-column: span 2;
    max-width: 600px;
}

.footer__license h3 {
    margin-bottom: 25px;
}

.footer__license-text {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 15px;
}

.footer__license-text a {
    color: #ff6b35;
    text-decoration: underline;
}

.footer__license-text a:hover {
    color: #fff;
}

.footer__badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.footer__badge {
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__badge:hover {
    opacity: 1;
}

.mga-badge {
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.age-badge {
    background: #ff4444;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__logo-icon {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer__copyright {
    color: #666;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer__license {
        grid-column: span 3;
    }
}

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

    .footer__container {
        padding: 0 15px;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer__license {
        grid-column: span 2;
        order: -1;
    }

    .footer__column h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer__link {
        font-size: 13px;
    }

    .footer__license-text {
        font-size: 12px;
    }

    .footer__badges {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .mga-badge {
        padding: 6px 10px;
        font-size: 11px;
    }

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

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

    .footer__content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer__license {
        grid-column: span 1;
    }

    .footer__column h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer__links {
        gap: 8px;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__license-text {
        font-size: 11px;
        line-height: 1.5;
    }

    .footer__bottom {
        padding-top: 20px;
        gap: 15px;
    }

    .footer__logo {
        font-size: 20px;
    }

    .footer__logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

.promo-section {
    max-width: 1200px;
    margin: 20px auto;
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.promo-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #444;
}

.promo-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.promo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card__img {
    transform: scale(1.05);
}

.promo-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.promo-card__casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-card__content {
    padding: 25px;
}

.promo-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.promo-card__description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-card__button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
}

.promo-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promo-card__footer {
    padding: 15px 25px 25px;
    border-top: 1px solid #333;
    margin-top: 10px;
}

.promo-card__disclaimer {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

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

    .promo-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card__image {
        height: 180px;
    }

    .promo-card__content {
        padding: 20px;
    }

    .promo-card__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .promo-card__description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .promo-card__button {
        padding: 10px 0;
        font-size: 13px;
    }

    .promo-card__footer {
        padding: 12px 20px 20px;
    }

    .promo-card__disclaimer {
        font-size: 9px;
    }

    .promo-card__badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .promo-card__casino-badge {
        top: 12px;
        right: 12px;
        padding: 3px 8px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .promo-card__image {
        height: 160px;
    }

    .promo-card__content {
        padding: 18px;
    }

    .promo-card__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .promo-card__description {
        font-size: 12px;
        margin-bottom: 18px;
        -webkit-line-clamp: 2;
    }

    .promo-card__button {
        padding: 9px 0;
        font-size: 12px;
    }

    .promo-card__footer {
        padding: 10px 18px 18px;
    }

    .promo-card__disclaimer {
        font-size: 8px;
    }
}

/* Demo content */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #999;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }

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

    .section-header p {
        font-size: 14px;
    }
}
/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h1,
.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    /*background: linear-gradient(135deg, #fff 0%, #ff6b35 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*background-clip: text;*/
    line-height: 1.2;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 30px 0 20px 0;
    position: relative;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.content-section p strong {
    color: #fff;
    font-weight: 600;
}

/* Lists */
.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    color: #585858;
    margin-bottom: 8px;
    font-size: 15px;
}

.content-section li strong {
    color: #585858;
    font-weight: 600;
}

.content-section ul li {
    list-style: none;
    position: relative;
}

.content-section ul li::before {
    content: '⚡';
    position: absolute;
    left: -20px;
    color: #ff6b35;
    font-size: 12px;
}

.content-section ol li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* Tables */
.table-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #333;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.content-section table th,
.content-section table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.content-section table th {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section table td {
    color: #ccc;
    font-size: 14px;
}

.content-section table td strong {
    color: #fff;
}

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

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

/* Special boxes */
.info-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.info-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 0 10px;
    font-size: 18px;
}

.info-box h4 {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-box p {
    color: #e0e0e0;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    color: #ff6b35;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 15px;
    border-top: 1px solid #333;
}

/* Step by step guide */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    border: 1px solid #333;
    color: #fff;
}

.step-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

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

    .content-section h1,
    .content-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-section h3 {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }

    .content-section h3::before {
        left: -10px;
        width: 3px;
        height: 16px;
    }

    .content-section p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .content-section li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .table-container {
        margin: 20px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

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

    .info-box {
        padding: 20px;
        margin: 20px 0;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 15px 15px;
        font-size: 14px;
    }

    .step-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .content-section h1,
    .content-section h2 {
        font-size: 20px;
    }

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

    .content-section p {
        font-size: 14px;
    }

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

    .content-section table {
        min-width: 400px;
    }
}

/* Utility classes */
.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    color: #ff6b35;
    font-weight: 600;
}

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

.mt-large {
    margin-top: 40px;
}

.mb-large {
    margin-bottom: 40px;
}