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: #0f1419;
}

.header {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    border-bottom: 3px solid #ffd700;
    position: relative;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 69, 0, 0.1) 100%);
    pointer-events: none;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a202c;
    animation: logoSpin 8s linear infinite;
}

.logo-text {
    background: linear-gradient(90deg, #ffd700, #ff4500, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

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

.nav-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 69, 0, 0.2));
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.btn-login {
    color: #cbd5e0;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-signup {
    background: linear-gradient(135deg, #ffd700, #ff4500);
    color: #1a202c;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-signup:hover {
    background: linear-gradient(135deg, #ffed4e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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, #1a2332 0%, #2d3748 100%);
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.mobile-nav-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    width: 80%;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin-top: 20px;
}

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

.demo-content {
    padding: 100px 20px;
    text-align: center;
    color: #cbd5e0;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Tablet styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .auth-buttons {
        gap: 8px;
    }

    .btn-login,
    .btn-signup {
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: 60px;
    }
}

/* Breakpoint for hamburger menu */
@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

/* Mobile styles */
@media (max-width: 768px) {
    .logo {
        font-size: 1.6rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 70px;
        padding: 0 10px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

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

    .mobile-menu-content {
        padding: 30px 15px;
        gap: 25px;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}


.banner {
    max-width: 1400px;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 30%, #1a2332 70%, #2d3748 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    border: 3px solid transparent;
    margin: 0 auto 40px;
    background-clip: padding-box;
}

.banner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700, #ff4500);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientBorder 4s ease-in-out infinite;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.floating-chip {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a202c;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.chip-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.chip-2 {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
    background: linear-gradient(45deg, #ff4500, #ff6b35);
}

.chip-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    background: linear-gradient(45deg, #4a5568, #2d3748);
    color: #ffd700;
}

.chip-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 1s;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 25%; animation-delay: 0s; }
.sparkle-2 { top: 30%; right: 20%; animation-delay: 1s; }
.sparkle-3 { bottom: 20%; left: 30%; animation-delay: 2s; }
.sparkle-4 { bottom: 35%; right: 35%; animation-delay: 0.5s; }
.sparkle-5 { top: 45%; left: 45%; animation-delay: 1.5s; }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, #ffd700, #ff4500, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.banner-subtitle {
    font-size: 1.4rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    color: #1a202c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.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: all 0.6s ease;
}

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

.banner-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ff6b35);
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

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

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

/* Tablet styles */
@media (max-width: 1024px) {
    .banner {
        min-height: 400px;
        padding: 50px 30px;
    }

    .banner h1 {
        font-size: 3.2rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }

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

    .floating-chip {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .banner {
        min-height: 350px;
        padding: 40px 25px;
        border-radius: 20px;
    }

    .banner h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

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

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

    .floating-chip {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .sparkle {
        width: 4px;
        height: 4px;
    }
}

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

    .banner h1 {
        font-size: 2rem;
    }

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

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

    .floating-chip {
        width: 35px;
        height: 35px;
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {
    .banner h1 {
        font-size: 1.8rem;
    }

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

    .banner-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

.promotion-block {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #3d4852;
    margin: 0 auto 20px;
}

.promotion-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    pointer-events: none;
}

.promotion-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.text-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(90deg, #ffd700, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-content p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bonus-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.bonus-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.bonus-label {
    font-size: 0.9rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
    color: #1a202c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ff6b35 100%);
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.casino-chips {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff4500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a202c;
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.chip-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.chip-2 {
    top: 120px;
    right: 80px;
    animation-delay: 1s;
    background: linear-gradient(45deg, #ff4500, #ff6b35);
}

.chip-3 {
    bottom: 20px;
    right: 40px;
    animation-delay: 2s;
    background: linear-gradient(45deg, #4a5568, #2d3748);
    color: #ffd700;
}

.dice {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    padding: 5px;
    animation: spin 4s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dice-dot {
    width: 8px;
    height: 8px;
    background: #1a202c;
    border-radius: 50%;
}

.dice-dot:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-dot:nth-child(2) { grid-column: 2; grid-row: 2; }
.dice-dot:nth-child(3) { grid-column: 3; grid-row: 3; }
.dice-dot:nth-child(4) { grid-column: 1; grid-row: 3; }
.dice-dot:nth-child(5) { grid-column: 3; grid-row: 1; }

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

@keyframes spin {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(90deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
    75% { transform: translate(-50%, -50%) rotate(270deg); }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .promotion-block {
        padding: 30px;
    }

    .promotion-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .visual-element {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .bonus-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .promotion-block {
        padding: 25px;
        border-radius: 15px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

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

    .bonus-info {
        flex-direction: column;
        gap: 15px;
    }

    .bonus-item {
        padding: 15px;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }

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

    .visual-element {
        width: 200px;
        height: 200px;
    }

    .casino-chips {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .dice {
        width: 50px;
        height: 50px;
    }

    .dice-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 1.8rem;
    }

    .bonus-info {
        gap: 10px;
    }

    .bonus-item {
        padding: 12px;
    }

    .visual-element {
        width: 150px;
        height: 150px;
    }
}

.games-block {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid #3d4852;
    margin: 0 auto 20px;
}

.games-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.title-gradient {
    background: linear-gradient(90deg, #ffd700, #ff4500, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.game-description {
    color: #cbd5e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    color: #1a202c;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.play-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #1a202c;
}

.tournament-section {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tournament-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tournament-prize {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

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

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.info-label {
    color: #a0aec0;
    font-size: 0.9rem;
}

.join-tournament {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff4500, #ffd700);
    color: #1a202c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

.join-tournament:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.6);
    background: linear-gradient(135deg, #ff6b35, #ffed4e);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

/* Tablet styles */
@media (max-width: 1024px) {
    .games-block {
        padding: 40px 30px;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .tournament-section {
        padding: 30px;
    }

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

    .tournament-prize {
        font-size: 2.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .games-block {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

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

    .game-card {
        padding: 25px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tournament-section {
        padding: 25px 20px;
    }

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

    .tournament-prize {
        font-size: 2rem;
    }

    .tournament-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .join-tournament {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

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

    .game-card {
        padding: 20px;
    }

    .game-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tournament-prize {
        font-size: 1.8rem;
    }
}

.footer {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    border-top: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.footer-section {
    color: #ffffff;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.payment-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    color: #ffd700;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ff6b35);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    color: #1a202c;
    font-weight: bold;
}

.contact-text a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #ffd700;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

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

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

.license-text {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.license-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.license-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.license-links a:hover {
    color: #ffd700;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

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

    .payment-methods {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
}

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-links a::before {
        display: none;
    }

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

    .payment-methods {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 10px;
    }

    .payment-item {
        padding: 10px 5px;
        font-size: 0.8rem;
    }

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

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

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

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

    .social-link {
        width: 45px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin-right: 0;
    }

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

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #3d4852;
    position: relative;
    overflow: hidden;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
}

/* Headings */
.content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
}

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

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

.content h2 strong {
    background: linear-gradient(90deg, #ffd700, #ff4500, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

.content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content h3 strong {
    color: #ffd700;
}

/* Paragraphs */
.content p {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

/* Lists */
.content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content ul li {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.content ul li::marker {
    color: #ffd700;
}

.content ul li[aria-level="1"] {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.content ul li[aria-level="1"]::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff4500;
    font-size: 0.9rem;
    top: 2px;
}

/* Tables */
.table-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.content table tbody tr:first-child {
    background: linear-gradient(135deg, #ffd700, #ff4500);
}

.content table tbody tr:first-child td {
    color: #1a202c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content table tbody tr:first-child td p {
    color: #1a202c;
    font-weight: bold;
    margin: 0;
}

.content table tbody tr:first-child td p strong {
    color: #1a202c;
}

.content table tbody tr:not(:first-child) {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content table tbody tr:not(:first-child):hover {
    background: rgba(255, 215, 0, 0.1);
}

.content table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: middle;
}

.content table td p {
    margin: 0;
    color: #cbd5e0;
    font-size: 1rem;
}

.content table td p strong {
    color: #ffffff;
    font-weight: bold;
}

/* Strong text styling */
.content strong {
    color: #ffd700;
    font-weight: bold;
}

/* Responsive scroll hint for tables */
.table-container::after {
    content: '← Scroll horizontally to see more →';
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #a0aec0;
    text-align: center;
    width: 100%;
}

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

/* Tablet styles */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 40px 30px;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .content p,
    .content ul li {
        font-size: 1rem;
    }

    .table-container {
        position: relative;
    }

    .table-container::after {
        display: block;
    }
}

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

    .content-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        text-align: left;
    }

    .content ul {
        padding-left: 25px;
    }

    .content ul li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

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

    .content table td {
        padding: 12px 15px;
    }

    .content table td p {
        font-size: 0.9rem;
    }
}

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

    .content h2 {
        font-size: 1.6rem;
    }

    .content h3 {
        font-size: 1.1rem;
    }

    .content p,
    .content ul li {
        font-size: 0.9rem;
    }

    .content table {
        min-width: 350px;
    }

    .content table td {
        padding: 10px 12px;
    }

    .content table td p {
        font-size: 0.85rem;
    }
}