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: #1a1a1a;
    color: white;
    overflow-x: hidden;
}


/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;

    img {
        width: 150px;
        height: 100px;
        object-fit: contain;
    }
}

.crown {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #b8860b);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.crown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ffd700;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;

    @media(max-width: 768px) {
        display: none;
    }
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: #d4af37;
    color: #1a1a1a;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
    color: #d4af37;
}

.mobile-menu nav a.vip {
    color: #ff6b6b;
}

.mobile-menu .mobile-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Banner Styles */
.banner {
    background: #2c3e50;
    height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url("../images/banner-bg.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
    z-index: 2;

    &:after {
        content: '';
        position: absolute;
        width: 335px;
        height: 415px;
        background: url("../images/welcome_king_big_win_anon.webp") no-repeat 0 0;
        background-size: contain;
        bottom: -10px;
        right: 0;
        z-index: 2;
    }
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}



.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.banner-text {
    max-width: 600px;
}



.welcome-badge {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.banner-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.banner-title .currency {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.banner-subtitle {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.banner-free-spins {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    font-weight: bold;
}

.banner-cta {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.banner-cta:hover {
    color: white;
    border-bottom-color: white;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
        height: 60px;
    }

    .logo {
        font-size: 20px;
    }

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

    .banner {
        height: 400px;
        padding: 20px 0;
    }

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

    .banner-title {
        font-size: 3rem;
    }

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

    .banner-free-spins {
        font-size: 1.2rem;
    }
}

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

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

    .banner-free-spins {
        font-size: 1rem;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.games-section {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.show-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.show-more:hover {
    color: white;
}

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

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #2a2a2a;
    aspect-ratio: 4/3;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.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(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.3) 50%,
            rgba(0,0,0,0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.game-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 14px;
    transition: all 0.3s ease;
}

.game-icon:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.game-title {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.game-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
    content: '▶';
    margin-left: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

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

    .game-overlay {
        opacity: 1;
        background: linear-gradient(
                to bottom,
                rgba(0,0,0,0) 0%,
                rgba(0,0,0,0.5) 70%,
                rgba(0,0,0,0.9) 100%
        );
    }

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

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        opacity: 1;
    }

    .game-icons {
        display: none;
    }
}

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .show-more {
        align-self: flex-end;
    }
}

/* Loading placeholder */
.game-card.loading {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

.promotions-section {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.show-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.show-more:hover {
    color: white;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.promotion-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2a2a2a;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

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

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

.promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            135deg,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.2) 50%,
            rgba(0,0,0,0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.promotion-info {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promotion-info:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.promotion-content {
    color: white;
}

.promotion-badge {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

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

.promotion-frequency {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.promotion-button {
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.9), rgba(184, 134, 11, 0.9));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.promotion-button:hover {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Specific card styles */
.welcome-pack {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
}

.cashback {
    background: linear-gradient(135deg, #8b4513, #654321);
}

.free-spins {
    background: linear-gradient(135deg, #4a148c, #7b1fa2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

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

    .promotion-card {
        height: 250px;
    }

    .promotion-overlay {
        padding: 20px;
    }

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

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

    .promotion-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

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

    .show-more {
        align-self: flex-end;
    }

    .promotion-card {
        height: 220px;
    }

    .promotion-overlay {
        padding: 15px;
    }

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

    .promotion-badge {
        font-size: 1rem;
    }

    .promotion-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Loading animation */
.promotion-card.loading {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Hover effects for different cards */
.welcome-pack:hover {
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
}

.cashback:hover {
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

.free-spins:hover {
    box-shadow: 0 15px 35px rgba(123, 31, 162, 0.4);
}

.footer {
    background: #1a1a1a;
    padding: 60px 0 40px;
    border-top: 1px solid #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 250px repeat(5, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    margin-bottom: 30px;

    img {
        width: 150px;
        height: 100px;
        object-fit: contain;
    }
}

.crown {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #b8860b);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.crown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ffd700;
}

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

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    line-height: 1.4;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        justify-self: center;
        margin-bottom: 20px;
    }
}

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

    .container {
        padding: 0 15px;
    }

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

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-column ul {
        gap: 10px;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }
}

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

    .footer-logo {
        justify-self: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column ul {
        align-items: center;
        gap: 12px;
    }
}

/* Hover effects */
.footer-column:hover h3 {
    color: #d4af37;
    transition: color 0.3s ease;
}

/* Bottom border for sections */
.footer-column {
    position: relative;
}

.footer-column::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d4af37;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column:hover::after {
    opacity: 1;
}

@media (max-width: 480px) {
    .footer-column::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.content-section:last-child {
    border-bottom: none;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 25px;
    margin-top: 40px;
    border-left: 4px solid #d4af37;
    padding-left: 20px;
}

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

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    margin-top: 30px;
}

p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

strong {
    color: #d4af37;
    font-weight: bold;
}

/* Lists */
ul, ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

ul li, ol li {
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
}

ul li::marker {
    color: #d4af37;
}

ol li::marker {
    color: #d4af37;
    font-weight: bold;
}

ul li strong, ol li strong {
    color: #d4af37;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #2a2a2a;
    min-width: 600px;
}

table th {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    font-weight: bold;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

table td {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

table tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

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

/* Content grid for better layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Special sections styling */
.intro-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0.3));
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.games-highlight {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #d4af37;
}

.bonus-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(160, 82, 45, 0.2));
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* FAQ Styling */
.faq-item {
    background: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    background: #333;
    color: #d4af37;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #404040;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Registration steps */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.step h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .content-section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
        padding-left: 15px;
    }

    h3 {
        font-size: 1.3rem;
    }

    .intro-section,
    .bonus-section {
        padding: 25px 20px;
    }

    .games-highlight {
        padding: 20px;
    }

    ul, ol {
        padding-left: 20px;
    }

    table th,
    table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .registration-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        padding: 20px 15px;
    }
}

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

    h2 {
        font-size: 1.4rem;
    }

    .intro-section,
    .bonus-section {
        padding: 20px 15px;
    }

    table th,
    table td {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* Scroll indicators for tables */
.table-wrapper::before {
    content: '← Scroll to see more →';
    display: block;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

@media (min-width: 769px) {
    .table-wrapper::before {
        display: none;
    }
}

/* Animation for content appearance */
.content-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.content-section:nth-child(2) {
    animation-delay: 0.2s;
}

.content-section:nth-child(3) {
    animation-delay: 0.4s;
}

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