﻿/*
 * Custom Styles for Laser Bootstrap Theme
 * Version: 1.5
 * This version includes a complete visual overhaul for the goboo booking tool.
 */


:root {
    --color-primary: #111827; /* Dark Blue/Gray */
    --color-secondary: #1F2937; /* Lighter Card BG */
    --color-text: #E5E7EB;
    --color-accent-orange: #F97316;
    --color-accent-cyan: #08D9D6; /* Electric Cyan */
    --color-border: #374151;
}

.content-format h1 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;    /* font-bold */
  color: #ffffff;      /* text-white */
  margin-bottom: 1.5rem; /* mb-6 */
}

.content-format h2 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-format h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-format h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.content-format p,
.content-format ul,
.content-format ol,
.content-format blockquote {
  color: var(--color-text); /* dein :root Wert */
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content-format ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.content-format ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.content-format a {
  color: var(--color-accent-orange);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.content-format a:hover {
  color: #fdba74; /* etwas helleres Orange */
}

.content-format strong {
  font-weight: 600;
  color: #ffffff;
}

.content-format blockquote {
  border-left: 4px solid var(--color-accent-orange);
  padding-left: 1rem;
  font-style: italic;
}





/* ==========================================================================
   Custom Modal Styles
   ========================================================================== */

.ltc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.9); /* Dark overlay with blur */
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ltc-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.ltc-modal-panel {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-accent-cyan);
    box-shadow: 0 0 40px rgba(8, 217, 214, 0.25);
    border-radius: 0.5rem;
    width: 90%;
    max-width: 1140px; /* Adjust as needed */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.ltc-modal-overlay.is-open .ltc-modal-panel {
    transform: scale(1);
}

.ltc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.ltc-modal-close-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.ltc-modal-close-btn:hover {
    color: var(--color-accent-orange);
}

.ltc-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* Simple loader for modal content */
.ltc-modal-body .loader {
    border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-accent-cyan);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*
===================================================================
 MISSION KONTROL - Custom Scrollbar Design
===================================================================
*/

/* --- FÜR WEBKIT-BROWSER (CHROME, SAFARI, EDGE, OPERA) --- */

/* Die Breite und Höhe des Scrollbalkens */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

/* Der Hintergrund des Scrollbalkens (die "Schiene") */
::-webkit-scrollbar-track {
  background: #1e293b; /* slate-800 */
}

/* Der bewegliche Teil des Scrollbalkens (der "Griff") */
::-webkit-scrollbar-thumb {
  background-color: #475569; /* slate-600 */
  border-radius: 10px;
  border: 3px solid #1e293b; /* Erzeugt einen Padding-Effekt */
}

/* Der Griff beim Überfahren mit der Maus */
::-webkit-scrollbar-thumb:hover {
  background-color: #4f46e5; /* indigo-600 */
}


/* --- FÜR FIREFOX --- */

/* Firefox unterstützt die oberen Regeln nicht und braucht eine eigene. */
html {
  scrollbar-width: thin;
  /* Format: [Farbe des Griffs] [Farbe der Schiene] */
  scrollbar-color: #475569 #1e293b;
}



/* ==========================================================================
   Navigation Dropdown Styles (FINAL & COMPLETE)
   ========================================================================== */

/* The parent list item needs to be relative to position the dropdown correctly.
   The 'group' class is added by the Nav Walker. */
.main-menu .menu-item-has-children.group {
    position: relative;
}

/* The dropdown container, which is a `<ul>` with the class we defined in the walker.
   It's hidden by default and positioned absolutely below its parent. */
.main-navigation-dropdown {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%; /* Position it right below the parent item */
    left: 0;
    z-index: 50;
    
    /* Styling for the dropdown box */
    background-color: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 0.375rem; /* 6px */
    padding-top: 0.5rem; /* 8px */
    padding-bottom: 0.5rem; /* 8px */
    min-width: 220px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* This is the magic: Show the dropdown when hovering over the parent `<li>` (the 'group') */
.main-menu .group:hover .main-navigation-dropdown {
    display: block;
}

/* Individual dropdown menu items (the links) */
.main-navigation-dropdown li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    white-space: nowrap; /* Prevents text from wrapping */
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem; /* Slightly smaller font for dropdown items */
    text-transform: none; /* Normal case for dropdown items */
}

/* Hover state for dropdown items */
.main-navigation-dropdown li a:hover {
    background-color: var(--color-accent-orange);
    color: #fff !important; /* Use !important to ensure it overrides other styles */
}

/* This is a simple trick to prevent the dropdown from disappearing.
   It makes the hover area of the parent item larger without changing its appearance. */
#main-header .menu-item-has-children {
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}


/*
===================================================================
 MISSION KONTROL - Off-Canvas Mobile Navigation Styling
===================================================================
*/

/* --- Hamburger Button Animation --- */
.hamburger-button {
    width: 24px; height: 24px; display: flex; flex-direction: column; justify-content: space-around;
}
.hamburger-line {
    width: 100%; height: 2px; background-color: white; transition: all 0.3s ease-in-out;
}
.mobile-menu-is-open .hamburger-button .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-is-open .hamburger-button .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-is-open .hamburger-button .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- Off-Canvas Container & Verhalten --- */
.mobile-menu-is-open #mobile-menu-container {
    pointer-events: auto; /* Container klickbar machen, wenn offen */
}
.mobile-menu-is-open #mobile-menu-overlay {
    opacity: 1;
}
.mobile-menu-is-open #mobile-menu {
    transform: translateX(0);
}
.mobile-menu-is-open body {
    overflow: hidden; /* Scrollen der Seite verhindern, wenn Menü offen ist */
}


/* --- Akkordeon Untermenü --- */
.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.has-children.submenu-active > .sub-menu {
    max-height: 500px; /* Einen ausreichend großen Wert wählen */
}
.has-children.submenu-active .submenu-toggle svg {
    transform: rotate(180deg);
}


/* ==========================================================================
   2. Toast Notification Styles
   ========================================================================== */
#toast-container {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    min-width: 300px;
    max-width: 400px;
    color: #fff;
    border-left-width: 4px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.toast.toast-success {
    background-color: #166534; /* Green-800 */
    border-color: #22c55e; /* Green-500 */
}

.toast.toast-error {
    background-color: #991b1b; /* Red-800 */
    border-color: #ef4444; /* Red-500 */
}

.toast.toast-info {
    background-color: #1e40af; /* Blue-800 */
    border-color: #3b82f6; /* Blue-500 */
}






/* ==========================================================================
   1. WordPress Comments Section Styles
   ========================================================================== */

#comments {
    margin-top: 3rem;
}

/* Titles like "One thought on..." or "Leave a Reply" */
/*.comments-title,
.comment-reply-title {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}*/

/* The list of comments */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    list-style: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}
.comment-list .comment:last-child {
    border-bottom: none;
}


/* --- FIX: Styling for nested comments (replies) --- */
.comment-list .children {
    list-style: none;
    margin: 1.5rem 0 0 0; /* Add space above the reply thread */
    padding-left: 1.5rem; /* This creates the indentation */
    border-left: 2px solid var(--color-border); /* Visual indicator for the thread */
}
@media (min-width: 768px) {
    .comment-list .children {
        padding-left: 2.5rem;
    }
}

/* Remove the bottom border from the last comment before a nested list */
.comment-list > .comment:has(+ .children) {
    border-bottom: none;
    padding-bottom: 0;
}


.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--color-border);
}

.comment-author .fn {
    font-style: normal;
    font-weight: bold;
    color: var(--color-text);
    font-size: 1.1rem;
}

.comment-author .says {
    display: none; /* Hide the default "says:" text */
}

.comment-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}
.comment-meta a {
    color: #9ca3af;
    text-decoration: none;
}
.comment-meta a:hover {
    color: var(--color-accent-cyan);
}

.comment-content {
    color: var(--color-text);
    line-height: 1.7;
}

.reply .comment-reply-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-accent-orange);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.reply .comment-reply-link:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-secondary);
    border-color: var(--color-accent-orange);
}

/* --- Comment Form Styling --- */
#respond {
    margin-top: 2rem;
}

.comment-form {
    padding: 1.5rem;
    background-color: var(--color-primary);
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
}

/* Style the form when it's moved for a reply */
.comment .comment-respond {
    margin-top: 1.5rem;
}

.comment-form label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    background-color: var(--color-secondary) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
}

.comment-form-comment textarea {
    min-height: 150px;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none !important;
    border-color: var(--color-accent-orange) !important;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5) !important;
}

/* "Logged in as..." text */
.logged-in-as {
    color: #9ca3af;
    margin-bottom: 1rem;
}
.logged-in-as a {
    color: var(--color-accent-cyan);
    text-decoration: none;
}
.logged-in-as a:hover {
    color: #fff;
}

/* "Cancel Reply" link */
#cancel-comment-reply-link {
    color: var(--color-accent-orange);
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1rem;
}
#cancel-comment-reply-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit input[type=submit] {
    background-color: var(--color-accent-orange) !important;
    color: white !important;
    padding: 0.85rem 1.5rem !important;
    border-radius: 0.25rem !important;
    text-transform: uppercase !important;
    font-family: 'Orbitron', sans-serif !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1.1rem !important;
    transition: background-color 0.3s ease !important;
}

.form-submit input[type=submit]:hover {
    background-color: #d86313 !important; /* Darker orange */
}





/* ==========================================================================
   2. Ultimate Member Form Overrides (Refined)
   ========================================================================== */

/* This section makes the Ultimate Member forms match our futuristic theme. */
/* It should be placed within your main custom.css file. */

.um {
    /* General container for UM content */
    max-width: 100% !important;
}

.um-form {
    /* The form itself */
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Style for each form field container */
.um-field {
    padding: 0 !important;
    margin-bottom: 1.5rem; /* Add spacing between fields */
}

/* Style for the labels (Nickname, E-Mail, etc.) */
.um-field-label label {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    color: var(--color-accent-cyan) !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
}

/* Style for all input fields */
.um-form input[type=text],
.um-form input[type=email],
.um-form input[type=password] {
    background-color: var(--color-primary) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    height: auto !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
}

/* Focus style for input fields */
.um-form input[type=text]:focus,
.um-form input[type=email]:focus,
.um-form input[type=password]:focus {
    outline: none !important;
    border-color: var(--color-accent-orange) !important;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5) !important;
}

/* Error message styling */
.um-field-error {
    color: #ef4444; /* Red for errors */
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Privacy Policy / Checkbox styling */
.um-field-type_checkbox .um-field-area {
    color: var(--color-text);
}
.um-field-type_checkbox label.um-field-checkbox {
    color: #9ca3af !important;
    font-size: 0.9rem !important;
}
.um-field-type_checkbox a {
    color: var(--color-accent-cyan) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.um-field-type_checkbox a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Submit Button styling */
.um-form .um-button,
.um-form input[type=submit] {
    width: 100% !important;
    background-color: var(--color-accent-orange) !important;
    color: white !important;
    padding: 0.85rem 1.5rem !important; /* Slightly more padding */
    border-radius: 0.25rem !important;
    text-transform: uppercase !important;
    font-family: 'Orbitron', sans-serif !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1.1rem !important;
    height: auto !important;
    line-height: normal !important;
    transition: background-color 0.3s ease !important;
}
.um-form .um-button:hover,
.um-form input[type=submit]:hover {
    background-color: #d86313 !important; /* Darker orange */
}

/* Secondary / Alternative Button (e.g., "Abbruch") */
.um-form .um-button.um-alt {
    background-color: transparent !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
}

.um-form .um-button.um-alt:hover {
    background-color: var(--color-border) !important;
    color: #fff !important;
    border-color: var(--color-border) !important;
}


/* Container for the submit button */
.um-col-alt {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* "Already have an account?" link styling */
.um-form .um-col-alt a {
    color: var(--color-accent-orange) !important;
    font-weight: bold;
    transition: color 0.3s ease;
}
.um-form .um-col-alt a:hover {
    color: #d86313 !important;
}




/* ==========================================================================
   1. Goboo Booking Tool Overrides
   ========================================================================== */

/* This section makes the Bootstrap-based tool match our futuristic theme */

/* Main wrapper and text color */
#goboo-wrapper, .goboo-back-layer, .goboo-overlay {
    color: var(--color-text);
}

/* Headings inside the tool */
#goboo-wrapper h1, #goboo-wrapper h5 {
    font-family: 'Orbitron', sans-serif;
    color: var(--color-text);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

/* Date navigation arrows and text */
.goboo_date_selector {
    background-color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    border-radius: 0.25rem;
    color: var(--color-accent-cyan);
}
.goboo_date_selector a {
    color: var(--color-accent-orange) !important;
}
.goboo_date_selector .goboo_current_date {
    font-family: 'Orbitron', sans-serif;
}

/* Calendar Grid */
.goboo_calendar .goboo_calendar {
    border-top: 1px solid var(--color-border);
}
.goboo_calendar .goboo_calendar .goboo_times {
    padding-top: 68px; /* Align with day headers */
    color: var(--color-text);
}
.goboo_calendar .goboo_calendar .goboo_times .goboo_time_span {
    border-top: 1px solid var(--color-border);
}
.goboo_calendar .goboo_calendar .goboo_day {
    border-left: 1px solid var(--color-border);
}
.goboo_calendar .goboo_calendar .goboo_day:nth-child(odd) {
    background-color: transparent;
}
.goboo_calendar .goboo_calendar .goboo_day:nth-child(even) {
    background-color: rgba(0,0,0,0.1);
}
.goboo_calendar .goboo_calendar .goboo_day.today {
    background-color: rgba(8, 217, 214, 0.1) !important;
}
.goboo_calendar .goboo_calendar .goboo_day .goboo_day_name {
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

/* Individual time slots */
.goboo_slot_button {
    border-bottom: 1px solid var(--color-primary) !important;
    color: var(--color-text) !important;
}
.goboo_slot_button:hover {
    background-color: var(--color-accent-orange) !important;
}
.goboo_slot_button .goboo_slot_players_indicator {
    background-color: var(--color-accent-cyan) !important;
}
.goboo_slot_button.goboo_slot_locked, .goboo_slot_button.goboo_slot_full {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.05) 5px, rgba(255, 255, 255, 0.05) 10px);
    cursor: not-allowed;
    color: #666 !important;
}
.goboo_slot_button.goboo_slot_locked .goboo_slot_players_indicator,
.goboo_slot_button.goboo_slot_full .goboo_slot_players_indicator {
    background-color: #444 !important;
}

/* Booking form overlay */
.goboo-overlay {
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1050; /* Ensure it's above other elements */
}
.goboo-overlay-wrapper {
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-accent-cyan);
    box-shadow: 0 0 25px rgba(8, 217, 214, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
}

/* Form inputs */
.goboo-overlay-wrapper input[type="text"],
.goboo-overlay-wrapper input[type="email"],
.goboo-overlay-wrapper input[type="tel"] {
    background-color: var(--color-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.75rem;
    border-radius: 0.25rem;
    width: 100%;
    transition: all 0.3s ease;
}
.goboo-overlay-wrapper input[type="text"]:focus,
.goboo-overlay-wrapper input[type="email"]:focus,
.goboo-overlay-wrapper input[type="tel"]:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.goboo_calendar .goboo_date_selector {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: auto;
    text-align: center;
    font-size: 1.6em;
    color: #95c120;
}

/* Buttons in the booking form */
.submit-container .button {
    background-color: var(--color-accent-orange) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-container .button:hover {
    background-color: #d86313 !important; /* Darker orange */
}

/* Player selection and other form elements */
.form-player-indicator-wrapper {
    background-color: var(--color-primary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
}
.form-details {
    margin-top: 2rem;
}
.goboo_slot_details .price {
    background-color: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text);
}
.goboo_slot_details .price .note {
    border-top: 1px solid var(--color-border);
    color: #9ca3af; /* Lighter gray for notes */
}
.important {
    color: var(--color-accent-orange) !important;
    font-weight: bold;
}

/* Player count slider */
.ui-slider {
    background-color: var(--color-border) !important;
    border: none !important;
}
.ui-slider .ui-slider-handle {
    background: var(--color-accent-orange) !important;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px var(--color-accent-orange);
}
.ui-slider .ui-slider-handle .l {
    color: var(--color-primary) !important;
    font-weight: bold;
}

/* Radio buttons and checkboxes */
.form-radio-exclusive-label:before {
    border-color: var(--color-accent-cyan) !important;
    background-color: var(--color-primary) !important;
}
.form-radio-exclusive-radio:checked + .form-radio-exclusive-label:before {
    background-color: var(--color-accent-orange) !important;
}
.goboo-successor-fancy-checkbox > .b2 {
    background-color: var(--color-primary) !important;
}
.goboo-successor-fancy-checkbox > .b3 {
    background-color: var(--color-border) !important;
}
.goboo-successor-checkbox:checked + .goboo-successor-fancy-checkbox > .b3,
.goboo-successor-fancy-checkbox.checked > .b3 {
    background-color: var(--color-accent-cyan) !important;
}
.goboo-successor-checkbox[disabled] + .goboo-successor-fancy-checkbox > .b3,
.goboo-successor-fancy-checkbox.locked > .b3 {
    background-color: #b91c1c !important; /* Red for locked */
}

.goboo_slot_details .goboo_players {
    border: 0 solid #fff !important;
}

/* --- Modal Styling Overrides --- */
.modal {
    display: none;
}

.modal-backdrop.show {
    opacity: 0.8 !important;
    background-color: var(--color-primary);
}
.modal-content.bg-dark {
    background-color: var(--color-secondary) !important;
    border: 1px solid var(--color-accent-cyan);
    border-radius: 0.5rem;
    box-shadow: 0 0 30px rgba(8, 217, 214, 0.4);
}
.modal-header, .modal-footer {
    border-color: var(--color-border) !important;
}
.modal-header .close {
    color: var(--color-text);
    opacity: 0.8;
    text-shadow: none;
}
.modal-header .close:hover {
    color: var(--color-accent-orange);
}
.modal .btn-secondary {
     background-color: var(--color-border) !important;
     border: none !important;
     color: var(--color-text) !important;
     font-family: 'Orbitron', sans-serif;
}

.form-player-indicator {
  color: #333;
}

.form-player-indicator-wrapper {
    padding: 0;
    background: #1f2937;
    border-color: #1f2937;
}
.form-details {
  background: #1f2937 !important;
  margin-top: 0;
}

/* ==========================================================================
   2. General Theme Styles
   ========================================================================== */

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-section {
    background-image: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), url('/wp-content/uploads/2025/07/intense-futuristic-laser-tag-game-with-players-action-woman-aiming-camera-neon-lights-adrenaline-rush-thrilling-entertainment-scifi-setting-ai-1-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.accent-orange { color: var(--color-accent-orange); }
.bg-accent-orange { background-color: var(--color-accent-orange); }
.accent-cyan { color: var(--color-accent-cyan); }
.bg-accent-cyan { background-color: var(--color-accent-cyan); }

.card-bg { background-color: var(--color-secondary); }

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--color-border);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(8, 217, 214, 0.3);
    border-color: var(--color-accent-cyan);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.world-card {
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

.world-card .overlay {
    background: linear-gradient(to top, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0.6) 70%, rgba(17, 24, 39, 0) 100%);
    transition: background 0.4s ease;
}

.world-card:hover .overlay {
     background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.2) 80%, rgba(17, 24, 39, 0) 100%);
}

/* Futuristic Button Style */
.btn-futuristic {
    position: relative;
    border: 1px solid var(--color-accent-orange);
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    z-index: 1;
}
.btn-futuristic::before {
    content: '';
    position: absolute;
    z-index: -1;
    background: var(--color-accent-orange);
    height: 150px;
    width: 250px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}
.btn-futuristic:hover {
    color: var(--color-primary);
}
.btn-futuristic:hover::before {
    top: -30px;
    left: -30px;
}

/* Simple loading spinner */
.loader {
    border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-accent-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Swiper Slider Styles */
.event-slider {
    width: 100%;
    height: 500px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: left;
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    overflow: hidden;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--color-accent-orange);
}
.swiper-pagination-bullet-active {
    background: var(--color-accent-orange);
}

/* Gemini API Sections */
.gemini-section {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-border);
}

.gemini-result-box {
    background-color: var(--color-primary);
    border: 1px solid var(--color-border);
    min-height: 100px;
}

.gemini-result-box h3 {
    color: var(--color-accent-orange);
}
.custom-logo {
  width: 100%;
  height: 100px;
}
.overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.swiper-slide .relative {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}



