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: #1a1a2e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    padding: 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #4ade80;
    z-index: 1000;
    padding: 0 15px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 10px;
    width: 100%;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-bottom: 0 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 10px;
}

.nav-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 5px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: #4ade80;
}

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

.nav-item.active a {
    color: #4ade80;
}

.nav-item.active a::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    width: 160px;
    justify-content: flex-end;
}

.login-btn {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 15px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.login-btn:hover {
    color: #4ade80;
    border-color: #4ade80;
}

.signup-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #0f172a;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #4ade80;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    border-bottom: 2px solid #4ade80;
}

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

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-menu-list a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-list a:hover {
    color: #4ade80;
}

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

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

/* Demo content */
.demo-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1300px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-item a {
        font-size: 0.85rem;
        padding: 10px 3px;
    }

    .auth-buttons {
        width: 150px;
        gap: 6px;
    }

    .login-btn,
    .signup-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-item a {
        font-size: 0.8rem;
        letter-spacing: 0px;
    }

    .navbar .logo {
        font-size: 1.3rem;
        width: 180px;
    }

    .auth-buttons {
        width: 140px;
    }
}

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

    .hamburger {
        display: flex;
    }

    .navbar .logo {
        width: auto;
    }
}

@media (max-width: 768px) {
    .navbar .logo {
        font-size: 1.5rem;
    }

    .nav-container {
        height: 70px;
    }

    .mobile-menu {
        top: 70px;
    }
}

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

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

    .nav-container {
        height: 65px;
    }

    body {
        padding-top: 65px;
    }

    .mobile-menu {
        top: 65px;
        padding: 15px;
    }

    .demo-content h1 {
        font-size: 2.2rem;
    }

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

/* Decorative effects */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner {
    height: 600px;
    margin: 71px auto 40px;
    width: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #1e40af 50%, #1d4ed8 75%, #2563eb 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.banner-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

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

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

.subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-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.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a, #15803d, #166534);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Декоративні елементи */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.coin {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: #0f172a;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.coin:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.coin:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.coin:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

.coin:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.card-suit {
    font-size: 2rem;
    opacity: 0.3;
    animation: cardFloat 8s ease-in-out infinite;
}

.card-suit:nth-child(5) {
    top: 10%;
    right: 25%;
    animation-delay: 1s;
}

.card-suit:nth-child(6) {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateX(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(20px) scale(1.1);
        opacity: 0.5;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

.particle:nth-child(odd) {
    background: #22c55e;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .banner {
        height: 500px;
        border-radius: 15px;
    }

    .banner-content {
        padding: 0 20px;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

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

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

    .coin {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .card-suit {
        font-size: 1.5rem;
    }
}

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

    .banner {
        height: 450px;
        border-radius: 12px;
    }

    .banner-content {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

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

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 25px;
        border-radius: 40px;
    }

    .coin {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .card-suit {
        font-size: 1.2rem;
    }
}

.tournaments-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: white;
}

.tournaments-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

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

.tournaments-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.tournament-card {
    min-width: 350px;
    background: linear-gradient(135deg, #2d4a87 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-direction: column;
    justify-content: space-between;
}

.tournament-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tournament-card.daily {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
}

.tournament-card.weekly {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.tournament-card.monthly {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.prize-pool-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.prize-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 5px;
}

.prize-description {
    font-size: 0.9rem;
    color: #a3f635;
    margin-bottom: 20px;
}

.tournament-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tournament-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.panda-mascot {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 2;
}

.show-more-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    /*position: absolute;*/
    bottom: 0;
    left: 30px;
    right: 110px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 1;
}

.tournament-card:hover .show-more-btn {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.diamond {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.show-all-btn {
    display: block;
    margin: 40px auto 0;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 300px;
}

.show-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

    .tournament-card {
        min-width: 280px;
        padding: 25px 25px 70px 25px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .tournament-title {
        font-size: 1.2rem;
    }

    .panda-mascot {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .show-more-btn {
        right: 80px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }
}

.vip-section {
    max-width: 1400px;
    margin: 20px auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: white;
}

.vip-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    position: relative;
}

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

.vip-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.vip-card {
    min-width: 220px;
    background: #2a2a2a;
    border: 2px solid #4ade80;
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
}

.vip-card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
}

.panda-avatar {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.leaf-decoration {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.5rem;
}

.vip-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vip-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.stat-label {
    color: #ccc;
}

.stat-value {
    font-weight: bold;
    color: white;
}

.stat-value.points {
    color: #fbbf24;
}

.stat-value.fs {
    color: #4ade80;
}

.stat-value.multiplier {
    color: #8b5cf6;
}

.more-btn {
    display: block;
    margin: 40px auto 0;
    background: transparent;
    border: 2px solid #4ade80;
    color: #4ade80;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 200px;
}

.more-btn:hover {
    background: #4ade80;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid #4ade80;
    color: #4ade80;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(74, 222, 128, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: -25px;
}

.nav-arrow.right {
    right: -25px;
}

@media (max-width: 768px) {
    .vip-container {
        gap: 10px;
        padding: 15px 0;
    }

    .vip-card {
        min-width: 180px;
        padding: 20px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .panda-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .leaf-decoration {
        font-size: 1rem;
    }

    .vip-title {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .stat-row {
        font-size: 0.8rem;
    }

    .nav-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .vip-card {
        min-width: 160px;
        padding: 15px 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #0f172a 100%);
    border-top: 2px solid #4ade80;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: '▶';
    opacity: 0;
    margin-right: 8px;
    transition: opacity 0.3s ease;
    color: #4ade80;
    font-size: 0.8rem;
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4ade80, #22c55e, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.payment-icon:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

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

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

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 20px;
}

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

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

.responsible-gaming p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.age-restriction {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid #fbbf24;
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.age-restriction:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand h2 {
        font-size: 2rem;
    }

    .footer-container {
        padding: 40px 15px 30px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-bottom-links {
        gap: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-brand h2 {
        font-size: 1.8rem;
    }

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

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

    .payment-icon {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

/* Декоративні елементи */
.decorative-card {
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 3px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decorative-card:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-card:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.decorative-card:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
}

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

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    /*background: #0f0f23;*/
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}

.content-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #4ade80, #22c55e, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.content-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4ade80;
    margin: 50px 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(74, 222, 128, 0.3);
    position: relative;
}

.content-container h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.content-container h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 35px 0 20px 0;
}

.content-container h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 25px 0 15px 0;
}

.content-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cbd5e1;
    text-align: justify;
}

.content-container p:last-child {
    margin-bottom: 0;
}

.content-container ul,
.content-container ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-container li {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-container ul li {
    position: relative;
}

.content-container ul li::marker {
    color: #4ade80;
}

.content-container a {
    color: #4ade80;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(74, 222, 128, 0.3);
}

.content-container a:hover {
    color: #22c55e;
    border-bottom-color: #22c55e;
}

.content-container strong {
    color: #fbbf24;
    font-weight: 700;
}

.content-container em {
    color: #a78bfa;
    font-style: italic;
}

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

    .content-container h1 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .content-container h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px 0;
    }

    .content-container h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    .content-container p,
    .content-container li {
        font-size: 1rem;
        text-align: left;
    }
}
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    background: rgba(30, 27, 75, 0.3);
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

.table-container::-webkit-scrollbar-thumb {
    background: rgba(74, 222, 128, 0.3);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 222, 128, 0.5);
}

/* Стилі таблиці */
.content-table {
    width: 100%;
    min-width: 600px; /* Мінімальна ширина для великих таблиць */
    border-collapse: collapse;
    background: transparent;
    font-size: 1rem;
}

.content-table thead {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    position: sticky;
    top: 0;
    z-index: 1;
}

.content-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #4ade80;
    font-size: 0.9rem;
    white-space: nowrap;
}

.content-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    vertical-align: top;
}

.content-table tbody tr {
    transition: background-color 0.3s ease;
}

.content-table tbody tr:hover {
    background: rgba(74, 222, 128, 0.05);
}

.content-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.content-table tbody tr:nth-child(even):hover {
    background: rgba(74, 222, 128, 0.08);
}

.content-table .number {
    text-align: right;
    font-weight: 600;
    color: #fbbf24;
}

.content-table .highlight {
    color: #4ade80;
    font-weight: 600;
}

.content-table .warning {
    color: #f59e0b;
    font-weight: 600;
}

.content-table .danger {
    color: #ef4444;
    font-weight: 600;
}

@media (max-width: 768px) {
    .table-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

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

    .content-table th,
    .content-table td {
        padding: 10px 15px;
    }

    .content-table th {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .content-table {
        min-width: 400px;
        font-size: 0.8rem;
    }

    .content-table th,
    .content-table td {
        padding: 8px 12px;
    }
}
.faq-simple {
    margin: 40px 0;
}

.faq-simple-item {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(30, 27, 75, 0.3);
    border-radius: 15px;
    border-left: 4px solid #4ade80;
}

.faq-simple-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-simple-question::before {
    content: "Q:";
    display: inline-block;
    background: #4ade80;
    color: #0f172a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 15px;
}

.faq-simple-answer {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-simple-answer::before {
    content: "A:";
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 15px;
    margin-bottom: 8px;
    vertical-align: top;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .faq-section {
        margin: 40px -15px;
        border-radius: 0;
        padding: 30px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-simple-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .faq-simple-question {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .faq-simple-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
        margin-left: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }

    .faq-simple-item {
        padding: 15px;
    }
}
.new-games-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.see-all-link {
    color: #4ade80;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.see-all-link:hover {
    color: #22c55e;
}

.see-all-count {
    color: #94a3b8;
    font-weight: 400;
}

.games-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
}

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

.games-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb {
    background: rgba(74, 222, 128, 0.3);
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 222, 128, 0.5);
}

.game-card {
    position: relative;
    min-width: 280px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    background: #1a1a2e;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #4ade80;
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.2);
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.game-card:hover .play-button {
    transform: translateY(0);
    opacity: 1;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.demo-content {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 222, 128, 0.9);
    color: #0f172a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.new-games-section:hover .nav-arrow {
    opacity: 1;
}

.nav-arrow:hover {
    background: #4ade80;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: -25px;
}

.nav-arrow.right {
    right: -25px;
}

.games-wrapper {
    position: relative;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .new-games-section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .see-all-link {
        font-size: 0.9rem;
    }

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

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

    .play-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 1.3rem;
    }

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

    .new-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .play-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
