/* Variables */
:root {
    --color-bg-dark: #050808;
    --color-bg-darker: #020303;
    --color-gold: #C9A961;
    --color-gold-light: #E5C57F;
    --color-text-main: #F5F5F5;
    --color-text-muted: #A0A0A0;
    --color-glass: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 1.8rem;
    --spacing-md: 3.6rem;
    --spacing-lg: 6rem;
    --spacing-xl: 9rem;

    --transition-normal: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally */
*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ADA Accessibility - Focus Indicators */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.25);
}

/* Screen Reader Only (visually hidden but accessible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Language Toggle Styles */
.lang-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--color-gold);
    color: #000;
}

.lang-btn:hover:not(.active) {
    background: rgba(212, 175, 55, 0.1);
}

.nav-link-item {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link-item:hover {
    color: var(--color-gold);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Smaller h1 */
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Smaller h2 */
    margin-bottom: 1.5rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-muted {
    color: var(--color-text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Promotional Banner */
.banner {
    background-color: var(--color-gold);
    color: #000;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1002;
    display: none;
    /* Hidden by default */
}

/* Show when active */
.banner.tournament-active {
    display: block !important;
}

.banner-text {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
    animation: scrollBanner 20s linear infinite;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 0;
    z-index: 1001;
    background-color: rgba(10, 12, 12, 0.95) !important;
    background-image: url('hero_banner_professional.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--color-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
    background: #fff;
    /* Ensure white background if original logo is transparent and needs it, or dark if preferred */
    padding: 2px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nav Book Button - Specific Styling */
.nav-book-btn {
    padding: 0.5rem 1.5rem;
    /* Smaller padding for navbar */
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #C9A961;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - LOCKED DOWN */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 12, 12, 0.98) !important;
    display: none;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    padding: 80px 0 40px 0 !important;
    margin: 0 !important;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-close {
    position: fixed !important;
    top: 20px !important;
    right: 25px !important;
    background: none !important;
    border: none !important;
    color: #C9A961 !important;
    font-size: 2.5rem !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    line-height: 1 !important;
}

.mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.mobile-link {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0.8rem 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    transform: none !important;
    transition: color 0.3s ease !important;
    pointer-events: auto !important;
}

.mobile-link:hover {
    color: #C9A961 !important;
    transform: none !important;
}

.mobile-cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 85% !important;
    max-width: 300px !important;
    margin-top: 1rem !important;
    align-items: center !important;
}

.mobile-btn {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    margin: 0 !important;
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(5, 8, 8, 0.7), rgba(5, 8, 8, 0.8)), url('hero.png') center/cover no-repeat;
    text-align: center;
    padding-top: 60px;
    /* Offset for navbar */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.stars {
    color: var(--color-gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1.4rem 3rem;
    /* Slightly reduced for mobile fit */
    border: 3px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    /* Prevent overflow */
    box-sizing: border-box;
}

.btn:hover {
    background: rgba(201, 169, 97, 0.1);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
}

.btn-primary {
    background: var(--color-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    color: #000;
    transform: translateY(-2px);
}

/* Glass Panel */
.glass-panel {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Hours List */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

/* Contact Info */
.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid var(--color-glass-border);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--color-gold);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.center-rating {
    justify-content: center;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    border-top: 1px solid var(--color-glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: #020303;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-glass-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 0;
    }

    .nav-book-btn {
        display: none;
    }

    /* Hide book button on mobile if needed, or keep it */
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Booking modal specific styling is handled by global .modal class */

.modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

input,
select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-glass-border);
    padding: 0.8rem;
    border-radius: 4px;
    color: var(--color-text-main);
    font-family: var(--font-body);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* Pulse Animation */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 169, 97, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

/* Fix for dropdown options visibility */
select option {
    color: #000;
    background: #fff;
}

/* ==========================================
   MOBILE RESPONSIVE STYLES
   ========================================== */

/* Tablet and below */
@media (max-width: 768px) {

    /* Navbar adjustments */
    .nav-desktop-links {
        display: none !important;
    }

    .logo-img {
        height: 50px;
    }

    .nav-book-btn {
        display: none;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    /* Hero Section - Premium Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 80px 1.5rem 40px;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
        opacity: 0.9;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.85;
    }

    .hero-rating {
        margin: 1.25rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 8px;
        letter-spacing: 1.5px;
    }

    .hero-buttons .btn-primary {
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    }

    .hero-buttons .btn:not(.btn-primary) {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    /* iPhone Specific Refinements */
    @media (max-width: 430px) {
        .logo-img {
            height: 45px;
            width: 45px;
        }

        .hero h1 {
            font-size: 2.1rem;
        }

        .hero p {
            font-size: 0.95rem;
        }

        .btn {
            padding: 0.9rem 1.5rem;
            min-height: 48px;
            /* High tap target */
        }
    }

    /* Section spacing */
    section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    /* Grid adjustments */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Glass panels */
    .glass-panel {
        padding: 1.75rem;
        border-radius: 16px;
    }

    /* Info items */
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    /* Hours list */
    .hours-row {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }

    /* FAQ */
    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-item {
        border-radius: 12px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-section {
        min-width: auto !important;
    }

    .social-links {
        justify-content: center !important;
    }

    .social-links a {
        font-size: 2.5rem !important;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 400px;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    /* Tournaments */
    .events-grid {
        grid-template-columns: 1fr;
    }

    /* Map iframe */
    .info-item iframe {
        height: 200px;
        border-radius: 12px;
    }

    /* Feature cards */
    .feature-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        width: 92%;
        padding: 0 0.75rem;
    }

    .logo-img {
        height: 42px;
    }

    .hero {
        padding: 90px 1rem 30px;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2.5px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-rating {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .glass-panel {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .review-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Hamburger touch target */
    .hamburger {
        padding: 0.75rem;
    }

    .hamburger span {
        width: 26px;
        height: 2.5px;
        margin: 5px 0;
    }

    /* Mobile menu */
    .mobile-menu {
        max-width: 100%;
        padding: 2rem;
    }

    .mobile-link {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }

    .mobile-nav {
        gap: 1.25rem;
    }

    .mobile-btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Feature cards */
    .feature-card {
        text-align: center;
        padding: 1.75rem 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    /* Footer newsletter */
    #newsletter-form input,
    #newsletter-form button {
        font-size: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    /* Hours */
    .hours-row {
        font-size: 0.9rem;
    }

    /* Section header */
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .mobile-link {
        font-size: 1.1rem;
    }

    .nav-book-btn {
        display: none;
    }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .mobile-link,
    .faq-question,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .faq-question {
        padding: 1rem 0;
    }

    input,
    select {
        min-height: 48px;
        font-size: 16px;
    }
}

/* Unique Tournament Ad Style (Active Mode) */
.banner.tournament-active {
    background: linear-gradient(-45deg, #050808, #3a2c0f, #C9A961, #3a2c0f, #050808);
    background-size: 400% 400%;
    animation: gradientBG 5s ease infinite !important;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
    height: auto;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    z-index: 1005;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.banner.tournament-active .banner-text {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    animation: scrollBanner 25s linear infinite !important;
}

.banner.tournament-active a {
    display: inline-block;
    background: #fff;
    color: #000 !important;
    padding: 3px 12px;
    border-radius: 4px;
    margin: 0 10px;
    text-decoration: none !important;
    font-weight: 900 !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    animation: pulse-white 2s infinite;
    vertical-align: middle;
}

@keyframes pulse-white {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.2);
    /* Gold tint on hover */
}

.tourn-card-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Data Table Styling */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    color: #e2e8f0;
}

.data-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(255, 165, 0, 0.15);
    color: orange;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-confirmed,
.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-completed {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Admin Form Styles */
.admin-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-form input,
.admin-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
}

.admin-form input:focus,
.admin-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.1);
}

.admin-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    /* Gold Gradient */
    color: #000;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-gold 2s infinite;
}

.floating-call-btn i {
    font-size: 1.2rem;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFE55C, #DAA520);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 90px;
        /* Above the sticky book button */
        right: 20px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}