:root {
    --color-dark: #0a0a1f;
    --color-purple: #6b48ff;
    --color-neon: #ffd700; /* Gold for casino theme */
    --color-accent: #ff4500; /* Orange-red for casino lights */
    --color-light: #ffffff;
    --color-warning: #ff4d4d;
    --color-gradient-dark: linear-gradient(180deg, #0a0a1f, #1c1c3b); /* Dark gradient */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol, li {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

body {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-light);
    background: var(--color-dark);
}

body.lock {
    overflow: hidden;
}

a {
    color: var(--color-accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-neon);
}

.casino-table {
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (max-width: 480.98px) {
    .casino-table {
        padding: 0 10px;
    }
    .intro-title {
        font-size: 1.6rem;
    }
}

.game-floor {
    background-image: url(../images/casino-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.game-floor:before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 31, 0.8), rgba(10, 10, 31, 0.95));
    z-index: -1;
}

.button {
    display: flex;
    align-items: center;
    border-radius: 32px;
    font-weight: 600;
    border: 0;
    background: var(--color-neon);
    color: var(--color-dark);
    padding: 10px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    color: var(--color-dark);
}

.casino-nav {
    padding: 12px 0;
    position: absolute;
    left: 0;
    right: 0;
}

.alert-bar {
    background: linear-gradient(90deg, #6b48ff, #ffd700);
    padding: 0.5rem 0;
    color: var(--color-light);
}

.age-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media screen and (max-width: 768.98px) {
    .age-notice {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    .age-notice svg {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
    }
}

.casino-logo {
    max-width: 60px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.casino-logo img {
    width: 50px;
}

.intro-section {
    padding: calc(40px + 1.5rem) 0 2rem;
}

.intro-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--color-neon), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 992.98px) {
    .intro-title {
        font-size: 2.5rem;
    }
}

.intro-description {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
}

@media screen and (max-width: 992.98px) {
    .intro-description {
        display: none;
    }
}

.intro-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.intro-feature img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768.98px) {
    .intro-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .jackpot-offer {
        padding: 1rem 0;
    }
    .intro-feature span {
        font-size: 0.875rem;
    }
    .footer-nav {
        flex-wrap: wrap;
    }
}

.jackpot-offer {
    padding: 2rem 0;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(45deg, rgba(107, 72, 255, 0.3), rgba(255, 215, 0, 0.3));
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 768.98px) {
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
}

.offer-image {
    max-width: 300px;
    border-radius: 10px;
}

.offer-details {
    width: 100%;
    text-align: center;
}

.offer-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-neon);
}

.offer-details p {
    margin-bottom: 1rem;
}

.offer-details .button {
    max-width: max-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.casino-operators {
    padding: 2rem 0 4rem;
}

.operator-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-purple);
    border-radius: 1.25rem;
    padding: 1rem;
    margin-bottom: 2rem;
    gap: 1rem;
    background: linear-gradient(45deg, rgba(107, 72, 255, 0.2), rgba(255, 215, 0, 0.2));
    backdrop-filter: blur(10px);
}

.glow {
    animation: glow 3s infinite linear;
}

@keyframes glow {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
    background: linear-gradient(90deg, rgba(107, 72, 255, 0.2), rgba(255, 215, 0, 0.4), rgba(107, 72, 255, 0.2));
    background-size: 2000px 100%;
}

@media screen and (max-width: 992.98px) {
    .operator-card {
        flex-direction: column;
        max-width: 560px;
        margin: 0 auto 1rem;
    }
}

.operator-logo {
    max-width: 250px;
}

.operator-deal {
    text-align: center;
    max-width: 340px;
}

.operator-deal span {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-neon);
}

.operator-deal p {
    font-size: 1.25rem;
}

.operator-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 200px;
}

.operator-rating {
    flex-shrink: 0;
}

.operator-rating span {
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-neon);
}

.operator-rating svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

.operator-button {
    border: 1px solid var(--color-neon);
}

.player-reviews {
    padding: 5rem 0;
    background: var(--color-gradient-dark);
}

.reviews-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon);
}

.reviews-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media screen and (max-width: 768.98px) {
    .reviews-content {
        flex-direction: column;
    }
}

.review-item {
    background: rgba(107, 72, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars img {
    width: 1rem;
    height: 1rem;
}

.review-text {
    font-style: italic;
    text-align: center;
    margin-bottom: 1rem;
}

.review-author {
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(107, 72, 255, 0.2);
    color: var(--color-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(107, 72, 255, 0.3);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-question {
    padding: 1rem 2rem 1rem 1rem;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0 1rem;
}

.faq-answer-text {
    padding: 0 0 1rem 0;
}

.about-casino {
    padding: 5rem 0;
    background: var(--color-gradient-dark);
}

.about-title {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-neon);
}

.about-text {
    margin-bottom: 2rem;
}

.casino-footer {
    padding: 3rem 0 1rem;
    background: var(--color-gradient-dark);
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    padding: 0.625rem;
    max-width: 150px;
}

.footer-link-img {
    max-height: 50px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid var(--color-accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(107, 72, 255, 0.8), rgba(255, 215, 0, 0.8));
    color: var(--color-light);
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: 100%;
    gap: 1rem;
}

.cookie-banner button {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 0.375rem;
    max-width: 80px;
    width: 100%;
    font-weight: 600;
}

#accept-cookies {
    background: var(--color-neon);
    color: var(--color-dark);
}

#accept-cookies:hover {
    transform: scale(1.1);
}

#reject-cookies {
    background: var(--color-warning);
    color: var(--color-dark);
}

#reject-cookies:hover {
    transform: scale(1.1);
}

/* Legal, Privacy, Responsible, and Terms Pages */
.casino-legal,
.casino-privacy,
.casino-responsible,
.casino-terms {
    padding: 5rem 0;
    color: var(--color-light);
    background: var(--color-dark);
    background-image: url(../images/casino-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.casino-legal::before,
.casino-privacy::before,
.casino-responsible::before,
.casino-terms::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-dark);
    z-index: -1;
}

.legal-title,
.privacy-title,
.responsible-title,
.terms-title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.625;
    text-align: center;
    background: linear-gradient(45deg, var(--color-neon), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px var(--color-neon-glow);
    animation: neon-flicker 3s infinite alternate;
}

.legal-content,
.privacy-content,
.responsible-content,
.terms-content {
    padding: 2rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px var(--color-chip-shadow);
}

.legal-content h3,
.privacy-content h3,
.responsible-content h3,
.terms-content h3 {
    margin-bottom: 0.625rem;
    font-size: 1.5rem;
    color: var(--color-neon);
    text-shadow: 0 0 5px var(--color-neon-glow);
}

.legal-content p,
.privacy-content p,
.responsible-content p,
.terms-content p {
    margin-bottom: 1rem;
    color: var(--color-light);
    opacity: 0.9;
}

.legal-content ul,
.privacy-content ul,
.responsible-content ul,
.terms-content ul {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    padding-left: 18px;
    color: var(--color-light);
    opacity: 0.9;
}

/* New Roulette Wheel Loading Animation */
.roulette-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-neon);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

@media screen and (max-width: 480.98px) {
    .roulette-spinner {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 480.98px) {
    .jackpot-offer {
        padding: 1rem 0;
    }
    .intro-title {
        font-size: 1.6rem;
    }
}