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

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

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

.feature-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 220px;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-description {
    font-size: 14px;
    color: #bbb;
    line-height: 1.4;
}

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

.support-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

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

.support-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.support-description {
    font-size: 15px;
    color: #bbb;
    line-height: 1.5;
}

.support-24-7 .support-icon {
    background: linear-gradient(135deg, #00d4aa, #00a085);
}

.support-languages .support-icon {
    background: linear-gradient(135deg, #ff6b6b, #e55353);
}

.support-questions .support-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

@media (max-width: 768px) {
    .features-grid,
    .support-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .features-grid::-webkit-scrollbar,
    .support-grid::-webkit-scrollbar {
        height: 4px;
    }

    .features-grid::-webkit-scrollbar-track,
    .support-grid::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }

    .features-grid::-webkit-scrollbar-thumb,
    .support-grid::-webkit-scrollbar-thumb {
        background: #666;
        border-radius: 2px;
    }

    .feature-card,
    .support-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 16px;
    }

    .feature-card:last-child,
    .support-card:last-child {
        margin-right: 0;
    }
}

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

    .feature-card {
        min-width: 200px;
        padding: 20px;
    }

    .support-card {
        min-width: 260px;
        padding: 24px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

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

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 2px solid #333;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

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

.footer-column h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.footer-column a:hover {
    color: #ffd700;
    padding-left: 16px;
    border-left-color: #ffd700;
}

.footer-payment {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333;
}

.footer-payment h4 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

    a {
        text-decoration: none;
    }
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333, #444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-info p {
    color: #888;
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-responsible {
    display: flex;
    gap: 16px;
}

.responsible-link {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid #555;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.responsible-link:hover {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .features-grid,
    .support-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .features-grid::-webkit-scrollbar,
    .support-grid::-webkit-scrollbar {
        height: 4px;
    }

    .features-grid::-webkit-scrollbar-track,
    .support-grid::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }

    .features-grid::-webkit-scrollbar-thumb,
    .support-grid::-webkit-scrollbar-thumb {
        background: #666;
        border-radius: 2px;
    }

    .feature-card,
    .support-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 16px;
    }

    .feature-card:last-child,
    .support-card:last-child {
        margin-right: 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .payment-icons {
        gap: 12px;
    }

    .payment-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

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

    .feature-card {
        min-width: 200px;
        padding: 20px;
    }

    .support-card {
        min-width: 260px;
        padding: 24px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

    .support-title {
        font-size: 18px;
    }
    .features-grid,
    .support-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .features-grid::-webkit-scrollbar,
    .support-grid::-webkit-scrollbar {
        height: 4px;
    }

    .features-grid::-webkit-scrollbar-track,
    .support-grid::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }

    .features-grid::-webkit-scrollbar-thumb,
    .support-grid::-webkit-scrollbar-thumb {
        background: #666;
        border-radius: 2px;
    }

    .feature-card,
    .support-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 16px;
    }

    .feature-card:last-child,
    .support-card:last-child {
        margin-right: 0;
    }
}

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

    .feature-card {
        min-width: 200px;
        padding: 20px;
    }

    .support-card {
        min-width: 260px;
        padding: 24px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

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

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

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

    .footer-logo h2 {
        font-size: 24px;
    }

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

    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-payment {
        padding: 20px;
    }
}

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

.games-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.game-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    width: 260px;
    height: 410px;
    position: relative;
}

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

.game-image {
    position: relative;
    width: 100%;
    height: 347px;
    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);
}

.game-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-favorite:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    transform: scale(1.1);
}

.game-info {
    padding: 16px;
    height: 63px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.game-provider {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .game-card {
        width: 100%;
        height: auto;
        aspect-ratio: 260/410;
    }

    .game-image {
        height: 85%;
    }
}

@media (max-width: 768px) {
    .games-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        gap: 16px;
    }

    .games-grid::-webkit-scrollbar {
        height: 4px;
    }

    .games-grid::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }

    .games-grid::-webkit-scrollbar-thumb {
        background: #666;
        border-radius: 2px;
    }

    .game-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 220px;
        height: 347px;
    }

    .game-image {
        height: 293px;
    }

    .game-info {
        height: 54px;
        padding: 12px;
    }

    .games-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

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

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

    .game-image {
        height: 267px;
    }

    .game-info {
        height: 48px;
        padding: 10px;
    }

    .game-title {
        font-size: 11px;
    }

    .game-provider {
        font-size: 9px;
    }

    .games-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

.banner {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a1810 50%, #1a1a1a 75%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 0, 150, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
    animation: glow 8s ease-in-out infinite alternate;
}

.banner::after {
    content: '🎰🃏💎🎲🍀⭐🎯🏆';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 120px;
    opacity: 0.03;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 80px;
    animation: float 15s ease-in-out infinite;
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

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

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

@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

.banner-title {
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 25%, #fff 50%, #ffed4a 75%, #ffd700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -2px;
}

.banner-subtitle {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.banner-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 50%, #ffa726 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow:
            0 8px 30px rgba(255, 107, 53, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.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(-3px) scale(1.05);
    box-shadow:
            0 15px 40px rgba(255, 107, 53, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.floating-icon:nth-child(6) { top: 70%; right: 5%; animation-delay: 5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-30px) rotate(5deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.15; }
    75% { transform: translateY(-25px) rotate(2deg); opacity: 0.18; }
}

@media (max-width: 768px) {
    .banner {
        min-height: 500px;
        padding: 40px 0;
    }

    .banner-title {
        font-size: 48px;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .banner-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
        padding: 0 10px;
    }

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

    .banner::after {
        font-size: 80px;
        letter-spacing: 40px;
    }

    .floating-icon {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 450px;
        padding: 30px 0;
    }

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

    .banner-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .banner-button {
        padding: 14px 32px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .banner::after {
        font-size: 60px;
        letter-spacing: 20px;
    }

    .floating-icon {
        font-size: 24px;
    }
}

.navbar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 2px solid #333;
    position: relative;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-transform: lowercase;
    position: relative;
    flex-shrink: 0;
}

.logo::after {
    content: '🎰';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    animation: spin 3s ease-in-out infinite;
}

@keyframes spin {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) rotate(180deg); }
}

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

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffd700;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-login {
    color: #ccc;
    border-color: #555;
    background: transparent;
}

.btn-login:hover {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.btn-signup {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffd700;
    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(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    padding: 40px 20px;
}

.mobile-nav-item {
    margin-bottom: 24px;
}

.mobile-nav-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    color: #ffd700;
    padding-left: 10px;
}

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

.mobile-buttons .btn {
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
}

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

    .nav-link {
        font-size: 13px;
        padding: 8px 0;
    }

    .nav-buttons {
        gap: 8px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .logo {
        font-size: 28px;
    }

    .logo::after {
        right: -25px;
        font-size: 18px;
    }
}

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

    .hamburger {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
    }
}

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

    .hamburger {
        display: flex;
    }

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

    .logo {
        font-size: 28px;
    }

    .logo::after {
        right: -25px;
        font-size: 18px;
    }

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

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 24px;
    }

    .logo::after {
        right: -20px;
        font-size: 16px;
    }

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

    .mobile-nav {
        padding: 30px 15px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 14px 0;
    }
}

.content {
    padding: 40px 20px;
    text-align: center;
    color: #ccc;
}



.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.content-container h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

.content-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}

.content-container ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-container li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: #ccc;
    font-size: 16px;
}

.content-container li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 16px;
}

.content-container strong {
    font-weight: 600;
    color: #ffd700;
}

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

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

.content-container thead {
    background: linear-gradient(135deg, #444 0%, #333 100%);
}

.content-container th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #ffd700;
    border-bottom: 2px solid #555;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-container tr {
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.content-container tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.content-container td {
    padding: 14px 16px;
    color: #ccc;
    font-size: 14px;
}

.content-container td:first-child {
    font-weight: 600;
    color: #fff;
}

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

    .content-container h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .content-container p {
        font-size: 15px;
    }

    .content-container li {
        font-size: 15px;
        padding: 6px 0 6px 25px;
    }

    .content-container .table-container {
        margin: 20px -15px;
        border-radius: 0;
    }

    .content-container table {
        min-width: 500px;
    }

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

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

    .content-container .table-container {
        margin: 20px -15px;
    }
}