/*
Theme Name: Queen Casino Tirana
Theme URI: https://queencasino.com
Author: Queen Casino Team
Author URI: https://queencasino.com
Description: A premium WordPress theme for Queen Casino Tirana, inspired by the Orbai Template with luxury aesthetics, elegant typography, and smooth animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: queen-casino
Tags: casino, gaming, modern, elegant, custom-menu, featured-images
*/

/* 1. IMPORTIMI I FONTIT - SIGUROHU QË ËSHTË NË KOKË TË CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Base Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-gold: #d4af37;
    --white: #ffffff;
}

/* Typography Base */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    letter-spacing: 0.02em;
    word-spacing: normal;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-spacing: normal;
}

/* Custom Radial Gradient Utility */
.bg-gradient-radial {
    background-image: radial-gradient(circle, var(--tw-gradient-stops));
}

/* Hero Gallery Animation Styles - Pre-loader */
.hero-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    pointer-events: none;
    z-index: 5;
}

.hero-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-gallery-item.center-cell {
    background: transparent;
    opacity: 1;
    transform: scale(1);
}

.hero-gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* Video Background Styles */
video {
    max-width: 100%;
    height: auto;
}

.hero-split {
    position: relative;
    z-index: 1;
}

/* Header Styles - Modern High-End Look */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border: 0px;
}

/* Desktop Navigation - Gold Glow on Hover */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

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

.nav-link:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* High-End Floating Glassy Header with Liquid Transitions */
:root {
    --header-font: 'Cormorant Garamond', serif;
    --gold: #d4af37;
    --transition-fluid: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 2. LOGJIKA E HEADER-IT PËR DESKTOP (VETËM MBI 768px) */
@media (min-width: 769px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 25px 0;
        transition: var(--transition-fluid);
        display: flex;
        justify-content: center;
    }


    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 95%;
        padding: 0px 45px;
        border-radius: 0px;
        transition: var(--transition-fluid);
        backdrop-filter: blur(0px);
        /* FIX: Border fillestar transparent që të mos kesh "flicker" bardhë kur ikën scroll */
        border: 1px solid transparent; 
        font-family: var(--header-font) !important;
    }

    /* Shtesa për të siguruar që çdo link ka fontin e duhur */
    .nav-container a, 
    .nav-container span, 
    .nav-container button {
        font-family: var(--header-font) !important;
    }

    /* KUR BËHET SCROLL - DESKTOP */
    .site-header.scrolled .nav-container {
        width: 100%;
        max-width: 1280px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15); /* Tani tranzicioni është i butë */
        border-radius: 15px; /* Korrigjuar në 15px sipas kërkesës */
        padding: 10px 35px;
        margin-top: -10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

/* 3. LOGJIKA E HEADER-IT PËR MOBILE (VETËM NËN 768px) */
@media (max-width: 768px) {
    .site-header {
        position: sticky; /* Sticky top pa ndryshim */
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 0;
        background: transparent;
    }

    .nav-container {
        width: 100% !important; /* Full width */
        padding: 15px 20px !important;
        background: rgba(255, 255, 255, 0.05) !important; /* Gjithmonë glassy */
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative; /* Create positioning context for mobile menu */
        border-radius: 0 !important; /* Jo rrumbullakim në mobile */
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0 !important;
        border: 1px solid transparent !important;
    }
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-fluid);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

/* Desktop Navigation */
.main-navigation ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.main-navigation ul li a:hover {
    color: var(--gold);
}

/* Button: BOOK A TABLE */
.btn-glass {
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 10px 25px;
    color: var(--gold);
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition-fluid);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.site-header.scrolled .btn-glass {
    background: var(--gold);
    color: black;
    border-radius: 50px;
    border-color: var(--gold);
}

/* Mobile Burger Button */
.mobile-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: rgba(212, 175, 55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: absolute;
}

.burger-line:nth-child(1) {
    top: 8px;
}

.burger-line:nth-child(2) {
    top: 15px;
}

.burger-line:nth-child(3) {
    top: 22px;
}

/* Burger to X Animation - Seamless and Perfectly Centered */
.mobile-burger[aria-expanded="true"] .burger-line:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
    background: var(--gold);
}

.mobile-burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(180deg);
    width: 0;
}

.mobile-burger[aria-expanded="true"] .burger-line:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
    background: var(--gold);
}

.mobile-burger:hover .burger-line {
    background: var(--gold);
}

/* Mobile Menu - Slide Down Below Header (Mobile Only) */

/* MOBILE ONLY - Menu slides down from below header */
@media (max-width: 768px) {
    /* Mobile Menu Container - Positioned absolutely below header */
    .mobile-menu {
        position: absolute;
        top: 100%; /* Starts directly below header */
        left: 0;
        width: 100%;
        max-height: 80vh !important;/* Approximately 50% of viewport height */
        /* Glassy / Liquid / Frosted-glass effect matching header */
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px); /* Start slightly above */
        transition: opacity 0.35s ease, 
                    visibility 0.35s ease,
                    transform 0.35s ease;
        z-index: 999; /* Below header (1000) but above content */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); /* Fully visible - slides down */
    }
    
    /* Ensure header acts as positioning context */
    .site-header {
        position: sticky;
    }

    .mobile-menu__inner {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: fit-content;
    }

    /* Brand / Title */
    .mobile-menu__brand {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        font-weight: 600;
        color: #d4af37;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
        padding-bottom: 8px;
    }

    /* Navigation Links */
    .mobile-menu__nav {
        flex: 1;
        min-height: 0;
    }

    .mobile-menu__nav-list {
        list-style: none !important; /* Remove any bullets/dots */
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu__nav-list li {
        margin: 0;
        list-style: none !important; /* Remove any bullets/dots */
    }
    
    /* Remove any pseudo-elements that might create dots/indicators */
    .mobile-menu__nav-list li::before,
    .mobile-menu__nav-list li::after,
    .mobile-menu__link::before,
    .mobile-menu__link::after {
        display: none !important;
        content: none !important;
    }

    nav.mobile-menu__nav {
        list-style: none;
    }

    .mobile-menu__link {
        display: block;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        text-align: center;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* Ensure no bullets or markers */
        list-style: none !important;
    }

    .mobile-menu__nav-list li:last-child .mobile-menu__link {
        border-bottom: none;
    }

    .mobile-menu__link:hover,
    .mobile-menu__link:focus {
        color: #d4af37;
    }

    /* CTA Button */
    .mobile-menu__cta {
        margin-top: 4px;
        text-align: center;
        padding-top: 12px;
    }

    .mobile-menu__btn-book {
        display: inline-block;
        padding: 12px 28px;
        background: #d4af37;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .mobile-menu__btn-book:hover,
    .mobile-menu__btn-book:focus {
        background: #c9a030;
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        transform: translateY(-2px);
    }
}

/* Desktop - Hide mobile menu completely */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-btn-glass {
    padding: 14px 24px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-btn-glass:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.mobile-btn-solid {
    padding: 14px 24px;
    background: var(--gold);
    border-radius: 50px;
    color: black;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.mobile-btn-solid:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.site-header a {
    text-decoration: none;
}

/* Footer Social Media Icons - Gold Hover Effect */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.15) !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

footer.site-footer.bg-casino-black.border-t.border-white\/10 {
    padding-bottom: 15px;
}

.social-icon:hover span {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Add padding to main content to account for fixed header */
.site-main {
    padding-top: 0px;
}

.career-modal-container.bg-black\/80.backdrop-blur-2xl.border.border-white\/10.rounded-\[2\.5rem\].p-8.relative.max-h-\[90vh\].overflow-y-auto {
    margin-top: 150px !important;
    margin-bottom: 50px !important;
}

/* Ensure hero section accounts for header */
#hero {
    padding-top: 20rem !important;
    margin-top: -105px !important;
}

.py-16 {
padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.bg-casino-black {
    --tw-bg-opacity: 1;
    background-color: rgb(5 5 5 / var(--tw-bg-opacity, 1));
    padding-top: 40px;
}

section.relative.min-h-\[70vh\].overflow-hidden.bg-casino-black {
    margin-top: -50px;
}

.py-32 {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
}

/* Career Modal - Desktop Horizontal Layout */
.career-modal-container {
    width: 100%;
    max-width: 1200px;
}

.career-modal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.career-modal-left {
    display: none;
}

.career-modal-right {
    width: 100%;
}

/* Desktop Layout (min-width: 1024px) */
@media (min-width: 1024px) {
    .career-modal-content {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .career-modal-left {
        display: block;
        flex: 1;
        padding-right: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .career-modal-right {
        flex: 1;
        width: auto;
    }
    
    .career-job-details {
        margin-top: 20px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-link {
        font-size: 1.75rem;
    }
    
    .mobile-menu-cta-btn {
        font-size: 1rem;
        padding: 12px 32px;
    }
    
    .mobile-brand-text {
        font-size: 20px;
    }
}

/* Video Control Button */
#videoControl {
    cursor: pointer;
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 30;
}

#videoControl:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Promo Canvas - Geometric Animation */
#geometricCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Promo Form Container with Gold Glow */


@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 1);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 2);
    }
}

/* Job Application Modal */
#jobModal {
    animation: fadeIn 0.3s ease-out;
}

#jobModal.hidden {
    display: none;
}

#jobModal.flex {
    display: flex;
}

/* Your Fun Space Section Parallax */
@media (min-width: 768px) {
    section[style*="background-image"] {
        background-attachment: fixed;
    }
}

/* Ultra-Realistic Casino Masterpiece Section */
#casino-masterpiece-section {
    /* Premium Gold Palette */
    --gold-brush: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-glow: rgba(212, 175, 55, 0.6);
    /* Dark Felt Background with Spotlight */
    --felt-dark: radial-gradient(circle at 50% 30%, #1a1a1a, #000000);
    --wood-grain: radial-gradient(circle, #4a3b2a 0%, #2a2015 60%, #110a05 100%);
    
    background: var(--felt-dark);
    color: #fff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
}

/* Atmospheric Effect (Gold Particles) */
#casino-masterpiece-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}

.cm-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Panel: Live Counter */
.cm-panel-left {
    text-align: right;
    padding-right: 20px;
}

.cm-label-gold {
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.cm-label-gold::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: #d4af37;
    opacity: 0.5;
}

/* Counter Bezel - Physical Screen Frame */
.cm-counter-bezel {
    background: #000;
    padding: 5px;
    border-radius: 12px;
    background: var(--gold-brush);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.cm-counter-screen {
    background: #0a0a0a;
    padding: 20px 40px;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

/* Scanline Effect */
.cm-counter-screen::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.05) 50%, transparent 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.3;
}

.cm-numbers {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 10px var(--gold-glow), 0 0 30px var(--gold-glow), 0 0 50px rgba(212, 175, 55, 0.4);
}

.cm-currency {
    color: #d4af37;
    font-size: 1.5rem;
    vertical-align: top;
    margin-left: 5px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

/* Centerpiece: Ultra-Realistic Roulette */
.cm-roulette-stage {
    position: relative;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Base - Heavy Chrome/Gold Rim */
.roulette-body-chrome {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: conic-gradient(from 45deg, #8a7018, #e6c15c, #fff, #e6c15c, #8a7018, #e6c15c, #fff, #e6c15c, #8a7018);
    padding: 12px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 0.8),
        inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

/* Wood Bowl Inside */
.roulette-wood-bowl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--wood-grain);
    box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.9), inset 0 -5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 3px solid #d4af37;
}

/* Spinning Disk */
.roulette-spinner-disk {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    transition: transform 8s cubic-bezier(0.1, 0, 0.1, 1);
    /* Create positioning context for number slots */
    transform-origin: center center;
}

/* Number Slots */
.rs-slot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 26px;
    height: 50%;
    transform-origin: 50% 100%;
    margin-left: -13px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding-top: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 1;
    /* Ensure slots are visible and positioned correctly */
    pointer-events: none;
}

.rs-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: -1;
}

.rs-slot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 65px;
    background: linear-gradient(to bottom, #d4af37, transparent);
    opacity: 0.7;
}

.rs-red::before {
    background: linear-gradient(to bottom, #a00, #700);
}

.rs-black::before {
    background: linear-gradient(to bottom, #222, #000);
}

.rs-zero::before {
    background: linear-gradient(to bottom, #008f39, #005f26);
}

/* Center Turret */
.roulette-turret {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #e6c15c 20%, #8a7018 60%, #4a3b2a 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.4);
    z-index: 10;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.turret-cap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-brush);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.turret-arm {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 12px;
    transform: translate(-50%, -50%);
    background: var(--gold-brush);
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Physical Ball */
.ball-track-orbit {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
    transition: transform 8s cubic-bezier(0.05, 0, 0.2, 1);
}

.physic-ball {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff, #dddddd 40%, #999999 80%, #333333 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

/* Spin Button */
.cm-spin-button {
    margin-top: 50px;
    padding: 20px 70px;
    border: none;
    background: var(--gold-brush);
    color: #111;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.6),
        inset 0 -5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cm-spin-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: 0.6s;
}

.cm-spin-button:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.cm-spin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6);
}

.cm-spin-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cm-spin-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Right Panel: Typography */
.cm-panel-right {
    text-align: left;
    padding-left: 30px;
}

.cm-hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 5rem;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 1;
    margin: 0;
    background: var(--gold-brush);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.cm-hero-subtitle {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 20px 0 30px 0;
    opacity: 0.8;
}

.cm-hero-desc {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 400px;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    padding-left: 25px;
}

.cm-highlight {
    color: #fff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
    .cm-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .cm-panel-left {
        text-align: center;
        padding: 0;
        order: 2;
    }
    
    .cm-panel-right {
        text-align: center;
        padding: 0;
        order: 1;
    }
    
    .cm-roulette-stage {
        order: 3;
    }
    
    .cm-label-gold::after {
        display: none;
    }
    
    .cm-hero-desc {
        margin: 0 auto;
        border: none;
        padding: 0;
    }
    
    .roulette-body-chrome {
        width: 350px;
        height: 350px;
    }
    
    .cm-hero-title {
        font-size: 3.5rem;
    }
    
    .cm-numbers {
        font-size: 3rem;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(-20deg) rotateX(10deg);
    }
    50% {
        transform: translateY(-20px) rotateY(-10deg) rotateX(5deg);
    }
}

/* Gold Gradient Text */
.gold-gradient-text {
    background: linear-gradient(to right, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* VIP Section Gold Checkmarks */
.vip-benefit-check {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Career Page Styles */
.job-btn.active {
    border-color: #d4af37;
    background-color: rgba(255, 255, 255, 0.1);
}

.job-content {
    animation: fadeIn 0.5s ease-in;
}

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

/* Bento Card Animations */
.bento-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

/* Smooth Scroll Animations */
.fade-in,
.slide-up {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible,
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Spacing */
section {
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .bento-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-gallery-overlay {
        gap: 10px;
        padding: 10px;
    }
}

/* Animation Delays for Staggered Effects */
.bento-card[data-delay="0"] {
    transition-delay: 0ms;
}

.bento-card[data-delay="100"] {
    transition-delay: 100ms;
}

.bento-card[data-delay="200"] {
    transition-delay: 200ms;
}

.bento-card[data-delay="300"] {
    transition-delay: 300ms;
}

/* Utility Classes */
.text-gold {
    color: var(--primary-gold);
}

/* Q Logo Divider */
.q-logo-divider {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    background-color: #050505;
}

.q-logo-divider img {
    max-width: 60px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.q-logo-divider img:hover {
    opacity: 1;
}

/* High-end spacing utilities */
.section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

@media (min-width: 1024px) {
    .section-spacing {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }
}

/* Ensure video covers full area */
.hero-split video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Hide scrollbar for mobile testimonials carousel */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.p-12 {
    padding-bottom: 3rem !important;
}

section.relative.h-\[80vh\].overflow-hidden.bg-casino-black {
    height: 95vh;
}

.pt-8 {
    padding-bottom: 1rem !important;
}


.grid.grid-cols-2.md\:grid-cols-3.gap-0.h-full.min-h-\[70vh\] {
    margin-top: -70px !important;
}

.min-h-\[70vh\] {
    min-height: 100vh !important;
}

/* ==========================================
   PROMOTIONS CAROUSEL
   ========================================== */
.carousel-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}



.carousel-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow:
        0 0 0 1px rgba(212,175,55,0.25),
        0 25px 60px rgba(0,0,0,0.7);
}

/* TRACK (slides side-by-side) */
.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-track.dragging {
    cursor: grabbing;
    transition: none;
}

/* EACH SLIDE */
.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/7;
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
        height: 700px;
        position: relative;
        aspect-ratio: 16/7;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Bottom gradient so buttons are always legible */
.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.3) 45%,
        transparent 75%
    );
    pointer-events: none;
}

/* BUTTONS (top-right, INSIDE the slide) */
.slide-buttons {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, filter .2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn:active {
    transform: scale(.95);
}

/* Gold / primary */
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f0d060, #d4af37);
    color: #1a1200;
    box-shadow: 0 4px 18px rgba(212,175,55,.45);
}

.btn-primary:hover {
    filter: brightness(1.12);
    box-shadow: 0 6px 24px rgba(212,175,55,.6);
}

/* Dark / secondary */
.btn-secondary {
    background: rgba(18,18,18,.78);
    color: #d4af37;
    border: 1px solid rgba(212,175,55,.5);
}

.btn-secondary:hover {
    background: rgba(30,30,30,.9);
    border-color: #d4af37;
}

/* PAGINATION DOTS */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.carousel-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212,175,55,.25);
    border: 1px solid rgba(212,175,55,.35);
    cursor: pointer;
    transition: background .3s, transform .3s, box-shadow .3s;
}

.carousel-pagination .dot:hover {
    background: rgba(212,175,55,.5);
}

.carousel-pagination .dot.active {
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212,175,55,.55);
    transform: scale(1.25);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .slide-buttons {
        top: 14px;
        right: 14px;
        gap: 7px;
    }
    .btn {
        font-size: 13px;
        padding: 8px 16px;
        letter-spacing: .8px;
    }
}











.promo-section {
    width: 100%;
    background: #0a0a0a;                        /* casino-black */
}
/* alternate sections get a very subtle separator */
.promo-section--alt {
    background: #0f0f0f;
}

/* ── Promotion image (full-width, cinematic ratio) ── */
.promo-image-wrap {
    width: 100%;
    overflow: hidden;
}
.promo-image-wrap img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

/* ── Text block underneath the image ── */
.promo-content {
    width: 100%;
    padding: 72px 24px 80px;
    background: #0a0a0a;
}
.promo-section--alt .promo-content {
    background: #0f0f0f;
}
.promo-content-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* label above title */
.promo-label {
    display: inline-block;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #d4af37;                             /* casino-gold */
    margin-bottom: 14px;
}

/* main heading – matches existing site italic serif style */
.promo-title {
    font-family: serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.1;
}

/* body copy */
.promo-desc {
    font-family: serif;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Tier list (Loyalty & Double Money) ── */
.promo-tiers {
    list-style: none;
    padding: 0;
    margin: 0 auto 36px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.promo-tiers li {
    font-family: sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
}
.promo-tiers strong {
    color: #fff;
}

/* tier badge colours */
.tier-name {
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 4px;
    margin-right: 10px;
}
.tier-name.silver   { background: #6b7280; color: #fff; }
.tier-name.gold     { background: #d4af37; color: #1a1200; }
.tier-name.diamond  { background: #7dd3fc; color: #0c1e2e; }
.tier-name.marina   { background: #a78bfa; color: #fff; }

/* ── Highlight block (Ladies Night) ── */
.promo-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 36px;
    padding: 20px 32px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(212,175,55,0.06);
}
.highlight-line {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* ── CTA buttons ── */
.promo-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-gold,
.btn-outline {
    display: inline-block;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 38px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-gold {
    background: #d4af37;
    color: #1a1200;
}
.btn-gold:hover {
    background: #e0c04a;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.55);
}
.btn-gold:active,
.btn-outline:active {
    transform: scale(0.96);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .promo-image-wrap img {
        height: 40vmin;
        min-height: 220px;
    }
    .promo-content {
        padding: 48px 18px 56px;
    }
}

/* ==========================================
   GAME CARD HOVER ANIMATION
   ========================================== */
.game-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(212, 175, 55, 0.15);
}

.game-card-bg {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-card-bg {
    transform: scale(1.05);
}

.game-card video {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover video {
    transform: scale(1.05);
}

.game-card:hover .absolute.inset-0.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.35);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.animate-on-scroll.transition-all.duration-1000.opacity-100.translate-y-0 {
    padding: 15px !important;
}

@media (max-width: 1024px) { /* 1024px për tablet dhe mobile */
    a.px-12.py-5.border.border-white\/30.text-white.rounded-full.font-sans.hover\:bg-white\/10.backdrop-blur-md.transition-all.tracking-widest.text-sm {
        margin-bottom: 150px !important;
    }
}


.p-12 {
    padding: 0rem !important;
}

.left-10 {
    left: 1rem !important;
}

@media (max-width: 1100px) {
    .cm-numbers {
        font-size: 2rem !important;
    }
}

@media (max-width: 1100px) {
    .roulette-body-chrome {
        width: 315px !important;
        height: 315px !important;
    }
}

.bg-casino-black {
    --tw-bg-opacity: 1;
    background-color: rgb(5 5 5 / var(--tw-bg-opacity, 1));
    padding-top: 100px;
    padding-bottom: 100px;
}



.bg-black\/60 {
    background-color: rgb(0 0 0 / 26%) !important;
}

@media (min-width: 768px) {
    .md\:h-\[70vh\] {
        height: 80vh !important;
    }
}



.slide-buttons.w-full.flex.justify-start {
    margin-right: -120px !important;
    margin-top: 33rem !important;
}







.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    cursor: pointer;
}

.whatsapp-button.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}