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: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #2a1a4a 100%);
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Космічний фон з зірками */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.3;
    z-index: 0;
}

/* Анімовані частинки */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
            radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle, rgba(124, 77, 255, 0.1) 1px, transparent 1px);
    background-size: 300px 300px, 200px 200px, 400px 400px;
    background-position: 0 0, 100px 100px, 200px 200px;
    animation: float 20s infinite linear;
    z-index: 0;
}

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

.banner {
    height: 600px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #2a1a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Світловий ефект навколо контенту */
.banner-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcb05, #00d4ff, #7c4dff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    line-height: 1.1;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.banner-subtitle {
    font-size: 1.4rem;
    color: #b0b0c0;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.banner-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcb05);
    color: #000;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.banner-button:hover::before {
    left: 100%;
}

.banner-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ffcb05, #00d4ff);
}

/* Декоративні елементи */
.banner-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.decoration-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    top: 30%;
    right: 15%;
    animation-delay: -2s;
}

.decoration-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: -4s;
}

.decoration-4 {
    bottom: 35%;
    right: 10%;
    animation-delay: -6s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Адаптивність */
@media (max-width: 768px) {
    .banner {
        height: 500px;
        padding: 30px 15px;
        border-radius: 20px;
    }

    .banner-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .banner-button {
        padding: 15px 35px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .banner-decoration {
        font-size: 1.5rem;
    }
}

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

    .banner-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .banner-decoration {
        display: none;
    }
}


.navbar {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #2a1a4a 100%);
    padding: 15px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    z-index: 1000;
}

/* Космічний фон з зірками */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(1px 1px at 20px 10px, #fff, transparent),
            radial-gradient(1px 1px at 40px 20px, #fff, transparent),
            radial-gradient(1px 1px at 90px 5px, #fff, transparent),
            radial-gradient(1px 1px at 130px 15px, #fff, transparent);
    background-repeat: repeat;
    background-size: 150px 50px;
    opacity: 0.2;
    z-index: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcb05);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border-color: #ff6b35;
    color: #ffcb05;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta {
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    color: #000 !important;
    font-weight: bold;
    border: none !important;
}

.nav-cta:hover {
    background: linear-gradient(45deg, #f7931e, #ffcb05) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .nav-logo {
        font-size: 1.6rem;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        width: 100%;
        border: none;
        margin: 0;
    }

    .nav-link:hover {
        background: rgba(255, 107, 53, 0.2);
        border-radius: 0;
        transform: none;
        box-shadow: none;
    }

    .nav-cta {
        margin: 10px 20px;
        border-radius: 25px !important;
        width: calc(100% - 40px);
    }

    .nav-cta:hover {
        transform: scale(1.02);
    }
}

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

    .nav-logo {
        font-size: 1.5rem;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
}

/* Космічний фон з зірками */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.promo-header {
    text-align: center;
    margin-bottom: 50px;
}

.promo-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcb05);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.promo-subtitle {
    font-size: 1.2rem;
    color: #b0b0c0;
    font-weight: 300;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.promo-card:hover::before {
    left: 100%;
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.welcome { color: #ff6b35; }
.deposit { color: #f7931e; }
.cashback { color: #00d4ff; }
.tournament { color: #7c4dff; }

.promo-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.promo-card-description {
    color: #b0b0c0;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.promo-bonus {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    transition: all 0.3s ease;
}

.promo-card:hover .promo-bonus {
    background: linear-gradient(45deg, #f7931e, #ffcb05);
    transform: scale(1.05);
}

.featured-promo {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid #ff6b35;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcb05);
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

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

    .promo-title {
        font-size: 2rem;
    }

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

    .promo-card {
        padding: 20px;
    }

    .featured-promo {
        grid-column: 1;
    }

    .promo-icon {
        font-size: 2.5rem;
    }

    .promo-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.5rem;
    }

    .promo-card {
        padding: 15px;
    }

    .promo-card-title {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 40, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.footer-links a:hover {
    color: #ff6b35;
    border-left-color: #ff6b35;
    padding-left: 15px;
    transform: translateX(5px);
}

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

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

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #b0b0c0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-methods a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.payment-methods a:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

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

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

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

    .payment-methods {
        justify-content: center;
    }
}

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

    .promo-title {
        font-size: 2rem;
    }

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

    .promo-card {
        padding: 20px;
    }

    .featured-promo {
        grid-column: 1;
    }

    .promo-icon {
        font-size: 2.5rem;
    }

    .promo-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.5rem;
    }

    .promo-card {
        padding: 15px;
    }

    .promo-card-title {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.games-section {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto 60px;
    position: relative;
}

.games-header {
    text-align: center;
    margin-bottom: 50px;
}

.games-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #7c4dff, #00d4ff, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(124, 77, 255, 0.5);
}

.games-subtitle {
    font-size: 1.1rem;
    color: #b0b0c0;
    font-weight: 300;
}

.games-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.games-slider {
    display: flex;
    gap: 25px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

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

.games-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 20px;
}

.games-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 10px;
}

.games-slider::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f7931e, #ffcb05);
}

.game-category {
    min-width: 220px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-category:hover::before {
    left: 100%;
}

.game-category:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #7c4dff;
    box-shadow: 0 20px 40px rgba(124, 77, 255, 0.3);
}

.game-category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.game-category:hover .game-category-icon {
    transform: scale(1.1) rotate(10deg);
}

.game-category-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-category-count {
    font-size: 1rem;
    color: #b0b0c0;
    margin-bottom: 20px;
}

.game-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(45deg, #7c4dff, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-category:hover .game-category-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .games-title {
        font-size: 2rem;
    }

    .games-slider {
        gap: 15px;
        padding: 0 15px;
    }

    .game-category {
        min-width: 180px;
        height: 240px;
        padding: 20px 15px;
    }

    .game-category-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .game-category-title {
        font-size: 1.1rem;
    }
}


.content-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Космічний декоративний фон */
.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(1px 1px at 50px 20px, rgba(255, 107, 53, 0.1), transparent),
            radial-gradient(1px 1px at 150px 80px, rgba(0, 212, 255, 0.1), transparent),
            radial-gradient(1px 1px at 250px 40px, rgba(124, 77, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    opacity: 0.3;
    z-index: -1;
}

/* Заголовки */
h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 40px 0 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-left: 30px;
}

h2::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.8;
}

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

/* Параграфи */
p {
    font-size: 1.1rem;
    color: #b0b0c0;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.4;
}

p strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Списки */
ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #b0b0c0;
    line-height: 1.4;
}

ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b35;
    font-size: 1.2rem;
}

ul li strong {
    color: #fff;
    font-weight: 600;
}

/* Таблиці */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 1rem;
}

table thead {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
}

table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    color: #4a4a5a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    transform: translateY(-2px);
}

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

table td strong {
    color: #fff;
    font-weight: 600;
}

/* Акцентні блоки */
p:has(strong:first-child) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    border-radius: 0 15px 15px 0;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

/* Мобільна адаптивність */
@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
        margin: 10px;
    }

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

    h2::before {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
        text-align: left;
    }

    ul li {
        font-size: 1rem;
        padding-left: 30px;
    }

    ul li::before {
        font-size: 1rem;
    }

    .table-wrapper {
        margin: 20px -10px;
        border-radius: 10px;
    }

    table {
        min-width: 500px;
        font-size: 0.9rem;
    }

    table th {
        padding: 14px 12px;
        font-size: 0.95rem;
    }

    table td {
        padding: 12px 12px;
        font-size: 0.9rem;
    }
}

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

    h2 {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    p {
        font-size: 0.95rem;
    }

    ul li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    table {
        min-width: 450px;
        font-size: 0.85rem;
    }

    table th {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

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

    .table-wrapper {
        margin: 20px -5px;
    }
}

/* Scrollbar стилізація для таблиць */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

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

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f7931e, #ffcb05);
}