/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #E31E24;
    --secondary-color: #C41E3A;
    --accent-color: #FFD700;
    --dark-color: #2C2C2C;
    --dark-secondary: #1a1a1a;
    --light-color: #f8f8f8;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.97) 0%, rgba(196, 30, 58, 0.97) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.98) 0%, rgba(180, 20, 50, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    position: relative;
    min-height: 70px;
    overflow: visible;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 70%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.nav-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.nav-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    display: block;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    z-index: 1;
}

.nav-left {
    justify-content: flex-start;
    padding-right: 120px;
}

.nav-right {
    justify-content: flex-end;
    padding-left: 120px;
}

.nav-link {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #FFF);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

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

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    background-image: url('../images/HFLY_2020_00609.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(221, 221, 221, 0.7) 0%, rgba(221, 221, 221, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
        top: 16px;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* ===================================
   Booking Section
   =================================== */
.booking-section {
    padding: 120px 0 100px 0;
    background: var(--light-color);
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    margin-top: 0;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
    padding-top: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.booking-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.badge-return {
    background: linear-gradient(135deg, #1E5BA3, #2874C7);
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.route {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.card-info {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 16px;
    background: var(--light-color);
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info-item .icon {
    font-size: 1.2rem;
}

.btn-book {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Attractions Section
   =================================== */
.attractions-section {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: -40px;
    margin-bottom: 64px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.attraction-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.attraction-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.attraction-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.attraction-card:hover .attraction-overlay {
    opacity: 1;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.btn-explore {
    display: inline-block;
    padding: 12px 32px;
    background: var(--white);
    color: var(--dark-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-explore:hover {
    background: var(--primary-color);
    color: var(--white);
}

.attraction-info {
    padding: 24px;
}

.attraction-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.attraction-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-secondary {
    padding: 14px 36px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--text-light);
}

.contact-policies {
    margin-top: 32px;
}

.contact-policies h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.contact-policies ul {
    list-style: none;
}

.contact-policies li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 0;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo-section {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-label {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-label strong {
    font-weight: 700;
    margin-right: 4px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.btn-confirm {
    flex: 2;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Success Modal */
.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.queue-number {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queue-display {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    padding: 16px 0;
    border-top: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.ticket-details {
    background: var(--light-color);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    text-align: left;
}

.ticket-details p {
    margin-bottom: 12px;
    color: var(--text-color);
}

.success-message {
    color: var(--text-light);
    margin: 24px 0;
    line-height: 1.8;
}

/* ===================================
   Queue Modal - New Design
   =================================== */
.queue-modal-content {
    max-width: 550px;
    text-align: center;
    padding: 32px 32px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.queue-modal-content.show-animation {
    opacity: 1;
    transform: scale(1);
}

/* Success Icon with SVG Animation */
.success-icon-large {
    margin: 0 auto 20px;
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon-large svg {
    width: 80px;
    height: 80px;
}

@keyframes successPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 0.6s ease-out 0.3s forwards;
}

.success-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.4s ease-out 0.8s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.queue-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.queue-route-name {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.queue-date {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    padding: 6px 16px;
    background: var(--light-color);
    border-radius: 20px;
    display: inline-block;
}

/* Your Queue Container */
.your-queue-container {
    margin-bottom: 16px;
}

.queue-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.your-queue {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
    transform: translateY(0);
    animation: pulseCard 2s ease-in-out infinite;
}

@keyframes pulseCard {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(227, 30, 36, 0.2);
    }
    50% {
        box-shadow: 0 12px 32px rgba(227, 30, 36, 0.35);
    }
}

.queue-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.queue-number-big {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
}

.queue-sublabel {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Divider */
.queue-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
    color: var(--text-light);
    font-size: 0.6rem;
}

/* Currently Serving */
.serving-container {
    margin-bottom: 20px;
}

.serving-queue {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid #4CAF50;
}

.queue-number-medium {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.queue-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #2E7D32;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Info Box */
.queue-info-box {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
    border-left: 4px solid var(--primary-color);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.queue-info-box svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.queue-info-box p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.queue-info-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Screenshot Reminder Box */
.screenshot-reminder {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border-radius: 12px;
    border: 2px solid #FFD700;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }
}

.screenshot-reminder svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.screenshot-reminder p {
    font-size: 14px;
    line-height: 1.7;
    color: #6B5400;
    margin: 0;
}

.screenshot-reminder strong {
    color: #D4A000;
    font-weight: 700;
}

/* Close Button */
.queue-close-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.queue-close-btn:hover {
    transform: translateY(-2px);
}

/* ===================================
   Queue Notification (Floating)
   =================================== */
.queue-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(227, 30, 36, 0.25);
    padding: 20px 24px;
    max-width: 320px;
    z-index: 1500;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid var(--primary-color);
}

.queue-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}

.notification-icon {
    font-size: 2rem;
    line-height: 1;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    color: var(--dark-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.queue-info {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-color);
}

.queue-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
}

.notification-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

