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 {
    background: #250A04;
    font-family: Arial, sans-serif;
}

.header {
    background: linear-gradient(135deg, #1a0f08, #0f0604);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    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;
    height: 80px;
}

.logo {
    color: #d4af37;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #f4d03f;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

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

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #d4af37;
}

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

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

.login-btn,
.register-btn {
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #d4af37;
}

.login-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.register-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c1810;
    border: 2px solid transparent;
}

.register-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    border-radius: 2px;
    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(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #1a0f08, #0f0604);
    z-index: 1000;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: #d4af37;
    padding-left: 10px;
}

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

.mobile-auth-buttons .login-btn,
.mobile-auth-buttons .register-btn {
    text-align: center;
    padding: 15px 25px;
    font-size: 1rem;
}

/* Main content для демонстрації */
.main-content {
    padding: 40px 20px;
    color: white;
    text-align: center;
    min-height: calc(100vh - 80px);
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .header-container {
        height: 65px;
    }

    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 20px 15px;
    }

    .mobile-nav-links li a {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .mobile-auth-buttons .login-btn,
    .mobile-auth-buttons .register-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content p {
        font-size: 1rem;
    }
}

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

    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    .mobile-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hamburger span {
        width: 25px;
    }
}

/* Додаткові ефекти */
.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.header:hover .header-container::before {
    opacity: 1;
}

/* Анімація для мобільного меню */
.mobile-nav-links li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }

.mobile-auth-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease 0.5s forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.providers-section {
    max-width: 1200px;
    margin: 40px auto;
}

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

.providers-title {
    color: #d4af37;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.view-all-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c1810;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navigation-controls {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-btn:hover {
    background: #d4af37;
    color: #2c1810;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.provider-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    backdrop-filter: blur(10px);
}

.provider-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.provider-card img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .providers-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .providers-title {
        font-size: 1.5rem;
    }

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

    .provider-card {
        padding: 20px 15px;
        min-height: 80px;
    }

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

    .navigation-controls {
        order: -1;
    }
}

@media (max-width: 480px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .provider-card {
        padding: 15px 10px;
        min-height: 70px;
    }

    .providers-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
}

/* Додаткові стилі для великих екранів */
@media (min-width: 1400px) {
    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.top-games-section {
    max-width: 1200px;
    margin: 40px auto;
}

.top-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.top-games-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.view-all-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c1810;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navigation-controls {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: #d4af37;
    color: #2c1810;
}

.games-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 rgba(212, 175, 55, 0.1);
}

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

.games-scroll-container::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.games-scroll-container::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.games-grid {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    min-width: max-content;
}

.game-card {
    flex: 0 0 auto;
    width: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #d4af37;
}

.game-image {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    background: #d4af37;
    color: #2c1810;
}

.game-info {
    padding: 15px;
}

.game-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-provider {
    color: #d4af37;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .top-games-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .header-controls {
        justify-content: space-between;
    }

    .top-games-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .game-card {
        width: 160px;
    }

    .game-image {
        height: 120px;
    }

    .games-grid {
        gap: 15px;
        padding-left: 5px;
        padding-right: 5px;
    }

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

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

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

    .game-image {
        height: 100px;
    }

    .game-info {
        padding: 12px;
    }

    .game-title {
        font-size: 0.8rem;
    }

    .game-provider {
        font-size: 0.7rem;
    }

    .top-games-title {
        font-size: 1.3rem;
    }
}

/* Плавна анімація появи */
.game-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Затримка анімації для кожної картки */
.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }

.footer {
    background: linear-gradient(135deg, #1a0f08, #0f0604);
    border-top: 3px solid #d4af37;
    padding: 60px 20px 30px;
    margin-top: auto;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    color: #fff;
}

.footer-column h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: -15px;
    color: #d4af37;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #d4af37;
    font-size: 1.1rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    text-decoration: none;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c1810;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-middle {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    margin: 40px 0;
}

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

.payment-methods h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-icon:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-2px);
    border-color: #f4d03f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #999;
    font-size: 0.9rem;
}

.copyright {
    flex: 1;
}

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

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.responsible-gaming {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.responsible-gaming h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 1rem;
}

.responsible-gaming p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.responsible-gaming a {
    color: #ff6b6b;
    text-decoration: none;
}

.responsible-gaming a:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 20px;
    }

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

    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        justify-content: center;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icon {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

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

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

@media (max-width: 480px) {
    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-info,
    .newsletter {
        padding: 20px;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

.promo-banners {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Фонові градієнти для кожного банера */
.welcome-banner {
    background: url("../images/banner_1.webp") no-repeat center center;
    background-size: cover;
}

.cashback-banner {
    background: url("../images/banner_2.webp") no-repeat center center;
    background-size: cover;
}

.highroller-banner {
    background: url("../images/banner_3.webp") no-repeat center center;
    background-size: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: white;
}

.promo-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 15px 0;
}

.promo-amount {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-description {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.promo-code {
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2c1810;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Додаткові декоративні елементи */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.promo-card:hover::before {
    transform: translateX(100%);
}

/* Мобільна адаптація */
@media (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .promo-card {
        height: 160px;
    }

    .promo-overlay {
        padding: 20px;
    }

    .promo-amount {
        font-size: 1.6rem;
    }

    .promo-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-card {
        height: 140px;
    }

    .promo-overlay {
        padding: 18px;
    }

    .promo-header {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .promo-amount {
        font-size: 1.4rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-code {
        font-size: 0.8rem;
    }

    .promo-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .promo-banners {
        gap: 12px;
    }

    .promo-card {
        height: 130px;
    }

    .promo-overlay {
        padding: 15px;
    }

    .promo-amount {
        font-size: 1.2rem;
    }

    .promo-description {
        font-size: 0.85rem;
    }

    .promo-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: 1 / -1;
        height: 180px;
    }
}

/* Спеціальна адаптація для великих планшетів */
@media (min-width: 900px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: auto;
        height: 160px;
    }
}

/* Анімація появи карток */
.promo-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.container h2 {
    color: #d4af37;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 40px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

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

.container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
}

.container h3 {
    color: #f4d03f;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 30px 0 20px 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.container h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.container ul {
    margin: 20px 0;
    padding-left: 0;
}

.container ul li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.container ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
    top: 2px;
}

/* Стилі для таблиць */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.container table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: transparent;
}

.container table tbody tr td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #e0e0e0;
    font-size: 0.95rem;
    vertical-align: top;
}

.container table tbody tr:first-child td {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.container table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.container table tbody tr td strong {
    color: #f4d03f;
    font-weight: bold;
}

/* Стилі для мобільних пристроїв */
@media (max-width: 768px) {

    .container {
        padding: 25px;
    }

    h2 {
        font-size: 1.8rem;
        margin: 30px 0 20px 0;
    }

    h2::after {
        width: 60px;
        height: 2px;
    }

    h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
    }

    h4 {
        font-size: 1.1rem;
        margin: 20px 0 12px 0;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }

    ul li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    /* Таблиці на мобільному */
    .table-container {
        margin: 20px -10px;
        border-radius: 8px;
    }

    table {
        min-width: 500px;
    }

    table tbody tr td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    table tbody tr:first-child td {
        font-size: 0.8rem;
        padding: 10px 8px;
    }

    /* Додаємо індикатор скролу */
    .table-container::after {
        content: '← Scroll →';
        position: sticky;
        right: 0;
        bottom: 0;
        background: rgba(212, 175, 55, 0.8);
        color: #2c1810;
        padding: 5px 10px;
        font-size: 0.7rem;
        font-weight: bold;
        border-radius: 5px 0 0 0;
        display: block;
        text-align: center;
    }
}

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

    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul li {
        font-size: 0.9rem;
        padding-left: 18px;
    }

    table {
        min-width: 450px;
    }

    table tbody tr td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    table tbody tr:first-child td {
        font-size: 0.75rem;
        padding: 8px 6px;
    }
}

/* Додаткові стилі для покращення читабельності */
strong {
    color: #f4d03f;
    font-weight: bold;
}

em {
    color: #d4af37;
    font-style: italic;
}

/* Спеціальні стилі для акцентування важливої інформації */
p:has(strong) {
    background: rgba(212, 175, 55, 0.05);
    padding: 15px;
    border-left: 3px solid #d4af37;
    border-radius: 5px;
    margin: 20px 0;
}

p:contains("€"), td:contains("€") {
    font-weight: 500;
}

/* Покращення контрасту для таблиць */
@media (prefers-color-scheme: dark) {
    table tbody tr:first-child td {
        background: rgba(212, 175, 55, 0.15);
    }
}

/* Smooth scroll для довгого контенту */
html {
    scroll-behavior: smooth;
}

/* Стилі для покращення доступності */
:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Покращення стилів для великих екранів */
@media (min-width: 1400px) {
    .container {
        padding: 50px;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.1rem;
    }
}