@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-red: #8B0000;
    --secondary-red: #DC143C;
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --white: #FFFFFF;
    --gradient-red: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    max-width: 100vw;
}

.orbitron {
    font-family: 'Orbitron', monospace;
}

section {
    padding: 5rem 1rem;
    margin: 0 auto;
    width: 100%;
}

section p {
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 4px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(220, 20, 60, 0.5)), url('img/bg3.jpeg') no-repeat center center/cover;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }

    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Section Styles */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Casino Cards */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.casino-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.casino-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo {
    width: 80px;
    height: 50px;
    margin-right: 1rem;
}

a {
    text-decoration: none;
    color: var(--gold);
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.casino-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Bonus Meter Section */
.bonus-meter-section {
    text-align: center;
}

.bonus-meter {
    width: 100%;
    max-width: 600px;
    height: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
}

.meter-bar {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    transition: width 2s ease-in-out;
}

.meter-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--black);
}

/* Parallax Section */
.parallax-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(220, 20, 60, 0.5)), url('img/spins-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 6rem 1rem;
}

.spins-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
}

.slider-item {
    flex: 0 0 auto;
    width: 200px;
    text-align: center;
    scroll-snap-align: center;
}

.slider-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-item p {
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Flip Card Section */
.flip-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 150px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.flip-card-front {
    background: var(--gradient-red);
    color: var(--white);
}

.flip-card-back {
    background: var(--gradient-gold);
    color: var(--black);
    transform: rotateY(180deg);
}

.flip-card-front i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Glowing Card Section */
.glowing-card {
    position: relative;
}

.glowing-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glowing-card:hover::after {
    opacity: 1;
}

/* Progress Circle Section */
.progress-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
}

.progress-ring {
    fill: none;
    stroke: var(--gold);
    stroke-width: 10;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--gold);
}

/* Interactive Button Section */
.interactive-button {
    width: 50%;
    text-align: center;
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.interactive-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.interactive-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Puzzle Section */
.puzzle-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.puzzle-piece {
    background: var(--dark-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.puzzle-piece:hover {
    transform: scale(1.1);
}

.puzzle-piece i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Animated Background Section */
.animated-bg-section {
    position: relative;
    background: var(--dark-gray);
}

.animated-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-red), var(--gold), var(--secondary-red));
    opacity: 0.2;
    animation: bgShift 5s infinite linear;
}

@keyframes bgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover Scale Section */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Comparison Table */
.comparison-table {
    background: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.table-header {
    background: var(--gradient-red);
    padding: 2rem;
    text-align: center;
}

.table-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.grid-header {
    background: var(--light-gray);
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.grid-cell {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-cell:nth-child(4n+1) {
    background: rgba(255, 215, 0, 0.05);
    text-align: left;
    font-weight: 600;
}

/* Accordion */
.accordion {
    margin: 3rem 0;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    background: var(--gradient-red);
    color: var(--white);
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.accordion-content {
    display: none;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 0 0 10px 10px;
}

.accordion-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-header:not(:first-child) {
        display: none;
    }

    .grid-cell {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1rem;
    }

    .grid-cell:nth-child(4n+1) {
        grid-column: 1 / -1;
        background: var(--gradient-gold);
        color: var(--black);
        font-weight: 700;
    }

    .section {
        padding: 3rem 1rem;
    }

    .casino-card {
        padding: 1rem;
    }

    .casino-logo {
        width: 60px;
        height: 40px;
    }

    .spins-slider {
        flex-direction: column;
        align-items: center;
    }

    .slider-item {
        width: 100%;
        max-width: 300px;
    }

    .flip-card-grid {
        grid-template-columns: 1fr;
    }

    .progress-circle {
        width: 150px;
        height: 150px;
    }

    .puzzle-container {
        flex-direction: column;
        align-items: center;
    }

    .burger.active {
        z-index: 1000;
    }

    .hero {
        height: 70vh;
    }

    h1 {
        margin-top: 3rem;
    }
}

.gold {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Additional Sections */
.features-section {
    background: var(--dark-gray);
    margin: 3rem 0;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--black);
    padding: 3rem 1rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}