:root {
    --bg-main: #05010c;
    --bg-secondary: #0c0716;
    --accent: #b026ff;
    --accent-soft: #ff5cf0;
    --text-main: #ffffff;
    --text-muted: #bfb8d9;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: radial-gradient(circle at top, #1b0b2f 0, #05010c 45%, #000 100%);
    color: var(--text-main);
    font-family: 'Poppins', 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5 { letter-spacing: .06em; }

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1) brightness(.7);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,0,255,.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(176,38,255,.3), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 100vh;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: .9rem;
    color: var(--accent-soft);
}

.btn-pill {
    border-radius: 999px;
    padding: 0.75rem 1.9rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn-neon {
    background: linear-gradient(120deg, var(--accent), var(--accent-soft));
    border: none;
    box-shadow: 0 0 20px rgba(176,38,255,.7);
}

.btn-neon:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 30px rgba(176,38,255,1);
}

.btn-outline-neon {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.04);
}

.btn-outline-neon:hover {
    border-color: var(--accent-soft);
    background: rgba(176,38,255,.25);
}

.badge-glow {
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.15);
    padding: .35rem .8rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
}

section {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 700;
    font-size: 2.2rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section { position: relative; }

.about-card {
    border-radius: 24px;
    background:
        radial-gradient(circle at top, rgba(176,38,255,.18), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.03), rgba(0,0,0,.9));
    border: 1px solid rgba(255,255,255,.12);
    padding: 2.2rem 1.8rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

.arabic-text {
    font-family: 'Tajawal', 'Dubai', system-ui, sans-serif;
    font-size: 1.02rem;
    line-height: 1.9;
    direction: rtl;
    text-align: right;
}

.arabic-text p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #f1eaff;
    letter-spacing: 0.3px;
}

.arabic-text strong {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,.4);
}

.divider-glow {
    width: 140px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
    box-shadow: 0 0 12px rgba(176,38,255,.7);
}

.glow-text {
    color: var(--accent-soft);
    text-shadow: 0 0 10px rgba(176,38,255,.9);
}

.text-accent {
    color: var(--accent-soft);
    text-shadow: 0 0 6px rgba(176,38,255,.7);
}

.gallery-section {
    background: radial-gradient(circle at center, #130721 0, #05010c 60%, #000 100%);
}

.carousel-item img {
    border-radius: 16px;
    object-fit: cover;
    height: 260px;
}

@media (min-width: 768px) {
    .carousel-item img { height: 340px; }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 6px #000);
}

.cta-glass {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.24);
    padding: 2.1rem 1.6rem;
    background:
        radial-gradient(circle at top, rgba(176,38,255,.25), transparent 60%),
        rgba(0,0,0,.75);
    backdrop-filter: blur(20px);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 40px rgba(0,0,0,.7);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: .25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .9rem;
    color: var(--text-muted);
}

.hours-list li span:first-child { font-weight: 500; }

footer {
    background: #050109;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-link:hover { color: var(--accent-soft); }

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99;
}

.floating-whatsapp a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b026ff;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.floating-whatsapp a {
    text-decoration: none !important;
}

.floating-whatsapp a:hover {
    filter: brightness(1.1);
}

.photo-card {
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(198, 53, 145, 0.185);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.35s ease;
}

.photo-card img { transition: 0.45s ease; }

.photo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(176,38,255,0.5);
}

.photo-card:hover img { transform: scale(1.12); }

.photo-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .photo-img { height: 340px; }
}

.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    border-radius: 16px;
    transition: 0.3s ease;
}

.video-thumb:hover img {
    filter: brightness(0.65);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.video-thumb:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3.2rem;
    color: #fff;
    text-shadow: 0 0 25px rgba(255,255,255,0.9);
}

.video-modal-content {
    background: rgba(10, 0, 20, 0.85);
    border: 1px solid rgba(176, 38, 255, 0.8);
    border-radius: 30px;
    box-shadow: 
        0 0 15px rgba(176, 38, 255, 0.7),
        0 0 30px rgba(176, 38, 255, 0.5),
        inset 0 0 30px rgba(176, 38, 255, 0.4);
    backdrop-filter: blur(18px);
    animation: neonPop 0.35s ease-out;
}

@keyframes neonPop {
    0% {
        transform: scale(0.85);
        opacity: 0;
        box-shadow: none;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #videoFrame {
        height: 320px;
    }
}

#clubLightsCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75%;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 50px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(105, 14, 157, 0.85),
        rgba(97, 8, 88, 0.9),
        transparent
    );

    box-shadow: 0 0 12px rgba(84, 9, 127, 0.8);
    opacity: 0.9;
}

@media (max-width: 575px) {
    h1.display-4 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    .lead {
        font-size: 0.95rem !important;
    }

    .arabic-text p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .hero-subtitle {
        font-size: 0.65rem !important;
        letter-spacing: 0.25em !important;
    }

    .btn-pill {
        padding: 0.55rem 1.2rem !important;
        font-size: 0.8rem !important;
    }

    .hours-list li {
        font-size: 0.8rem !important;
    }

    .info-title {
        font-size: 1.1rem !important;
    }
}
