/* Casino Themed Background */
/* Default (Desktop) */
body {
    background: url('assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    body {
        background: url('assets/bg.jpg') no-repeat center center fixed;
        background-size: cover;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

/* Headings */
h1, h2 {
    color: #ffd700; /* Casino gold */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

h2 {
    color: #ffd700;
    text-shadow:
        0 0 5px #ffd700,
        0 0 10px #ff4500,
        0 0 15px #ff4500;
}

/* Text container for reviews */
.review-text-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 10px;
    max-width: 80%;
    margin: auto;
    text-align: left;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Review list layout */
.reviews, .review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.review {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    width: 200px;
}

.review img {
    width: 100%;
}

/* Hover effect on scroll previews */
.scroll-item:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Buttons and links */
a {
    text-decoration: none;
    color: #007bff;
}

button {
    background-color: gold;
    color: black;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #d4af37;
}

/* Max content wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Horizontal preview scroller */
.review-slider {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6); /* darker & semi-transparent */
    backdrop-filter: blur(8px);
    border-top: 2px solid gold;
    border-bottom: 2px solid #b30000;
    padding: 20px 0;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    margin: 20px 0;
}

.review-slider {
    animation: fadeInUp 0.6s ease-out;
}

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



.scroll-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

/* Scroll item styling */
.scroll-item {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    padding: 12px;
    scroll-snap-align: start;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
}

.scroll-item:hover {
    transform: scale(1.08);
    box-shadow: 0px 8px 16px rgba(255, 215, 0, 0.4), 0px 0px 8px rgba(255, 0, 0, 0.3);
}


.scroll-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.scroll-item p {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    white-space: nowrap;
}

/* VEGAS GLOWING SCROLLBAR STYLE */

/* WebKit-based browsers (Chrome, Edge, Safari) */
@supports (-webkit-touch-callout: none) {
    .scroll-container::-webkit-scrollbar {
        height: 6px;
    }

    .scroll-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

    .scroll-container::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, gold, #b30000);
        border-radius: 10px;
        box-shadow: 0 0 5px gold, 0 0 10px red;
        border: 1px solid #ffdf00;
        transition: background 0.3s ease;
    }

    .scroll-container::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ffd700, #ff0000);
        box-shadow: 0 0 8px #ffcc00, 0 0 12px red;
    }
}

/* Firefox-specific scrollbar */
.scroll-container {
    scrollbar-width: thin;
    scrollbar-color: gold rgba(0, 0, 0, 0.5);
}
