/* Reset and Base Styles - Premium Tourism */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a5f;
    --primary-blue-light: #2d5a87;
    --gold: #c9a227;
    --gold-light: #d4af37;
    --gradient-blue: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #e8c547 100%);
    --gradient-blue-purple: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    --text-dark: #1a1a2e;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 16px 48px rgba(30, 58, 95, 0.15);
    --shadow-xl: 0 24px 64px rgba(30, 58, 95, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
  align-items: center;
  gap: 10px;

}

.logo-img {
    width: 100px;
    height: 100%;
    line-height: 60.6px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue); /* ko‘k-binafsha */
    letter-spacing: 0.5px;
  }

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-blue);       /* ko‘k rang */
  font-weight: 700;     /* qalin */
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--gold);       /* hover’da to‘qroq ko‘k */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue-purple);
    transition: width 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-telegram-header {
    background: var(--gradient-blue-purple);
    color: var(--white);
    white-space: nowrap;
}

.btn-telegram-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-blue-purple);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Luxury */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("assets/hero/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-fade-in {
    opacity: 0;
    animation: heroFadeIn 1s ease forwards;
}

.hero-fade-delay-1 { animation-delay: 0.3s; }
.hero-fade-delay-2 { animation-delay: 0.6s; }

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-fade-in {
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-icon {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
}

.hero-scroll-icon::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    margin: 8px auto 0;
    animation: scrollDot 2s ease-in-out infinite;
}

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

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

/* Tours Section - Premium Cards */
.tours {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.tour-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.tour-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
}

/* Closed tour: greyed out, overlay, disabled booking */
.tour-card-closed {
    opacity: 0.85;
    position: relative;
}
.tour-card-closed .tour-image {
    position: relative;
}
.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 0;
}
.tour-card-overlay-text {
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}
.btn-tour-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.tour-content {
    padding: 1.5rem;
}

.tour-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tour-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tour-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.tour-duration {
    color: var(--primary-blue);
    font-weight: 600;
}

.tour-price {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-price-value {
    color: var(--primary-blue);
    font-weight: 700;
}

.tour-services {
    color: var(--text-light);
    list-style: none;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.tour-services li {
    padding: 0.35rem 0;
}

.btn-tour {
    width: 100%;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-tour.btn-gold {
    background: var(--gradient-gold);
    color: #1a1a2e;
}

.btn-tour.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-tour:not(.btn-tour-disabled):not(.btn-gold):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.about-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gradient-blue);
    color: var(--white);
}

.contact-content {
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-contact {
    background: var(--gradient-gold);
    color: #1a1a2e;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 10px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

/* Footer - Premium */
.footer {
    padding: 4rem 0 2rem;
    background: #0f172a;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
}

.footer-block-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-block {
    text-align: center;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-icon {
    flex-shrink: 0;
    color: var(--gold-light);
    opacity: 0.9;
}

.footer-contact-link:hover .footer-icon {
    color: var(--gold);
}

.footer-icon-phone,
.footer-icon-instagram,
.footer-icon-clock {
    display: inline-flex;
}

.footer-working-hours {
    text-align: center;
}

.footer-hours-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-line {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}

.footer-hours-line:not(:last-child) {
    margin-bottom: 0.35rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s, transform 0.3s, color 0.3s;
}

.footer-social-icon:hover {
    background: var(--gold);
    color: #0f172a;
    transform: translateY(-3px);
}

.footer-trust-line {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
}

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

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact-block {
        text-align: left;
    }

    .footer-contact-link {
        justify-content: flex-start;
    }

    .footer-working-hours {
        text-align: left;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .tours {
        padding: 6rem 0;
    }

    .why-us {
        padding: 6rem 0;
    }

    .contact {
        padding: 6rem 0;
    }

    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tour-image {
        height: 320px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1.2fr 1.2fr auto;
        gap: 2.5rem;
        align-items: start;
    }

    .footer-brand {
        grid-column: auto;
        text-align: left;
    }

    .footer-contact-block {
        text-align: left;
    }

    .footer-contact-link {
        justify-content: flex-start;
    }

    .footer-working-hours {
        text-align: left;
    }

    .footer-social {
        grid-column: auto;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .btn-telegram-header {
        display: none;
    }

    /* Keep language switcher visible on mobile; compact if needed */
    .language-switcher button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .tours {
        padding: 3rem 0;
    }

    .why-us {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Language switcher – top right, minimal, blue-purple theme */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
}

.language-switcher button {
    background: transparent;
    border: 1px solid rgba(30, 58, 95, 0.3);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.language-switcher button:first-child {
    border-radius: 6px 0 0 6px;
    border-right-width: 0;
}

.language-switcher button:nth-child(2) {
    border-radius: 0;
    border-right-width: 0;
}

.language-switcher button:last-child {
    border-radius: 0 6px 6px 0;
}

.language-switcher button:hover {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary-blue);
    border-color: rgba(30, 58, 95, 0.5);
}

.language-switcher button.active {
    background: var(--gradient-blue);
    color: var(--white);
    border-color: transparent;
}

.language-switcher button.active:hover {
    background: var(--gradient-blue);
    color: var(--white);
    opacity: 0.95;
}

/* ========== Booking Modal ========== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.booking-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.booking-modal-open .booking-modal-content {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.booking-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.booking-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.25rem;
}

.booking-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.booking-form .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.booking-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-booking-submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-booking-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-booking-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Toast */
.booking-success-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #059669;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s, visibility 0.3s;
}

.booking-success-toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ========== Easter Egg Gift Modal ========== */
.easter-egg-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.easter-egg-modal-open {
    opacity: 1;
    visibility: visible;
}

.easter-egg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.easter-egg-content {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem 2rem 2.25rem;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    border: 3px solid #d4af37;
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3), 0 25px 80px -20px rgba(0, 0, 0, 0.35), 0 0 50px rgba(201, 162, 39, 0.25);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.easter-egg-modal-open .easter-egg-content {
    transform: scale(1);
    opacity: 1;
}

.easter-egg-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.easter-egg-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.easter-egg-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.easter-egg-body {
    text-align: center;
    margin-bottom: 1.25rem;
}

.easter-egg-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.easter-egg-sub {
    font-size: 1rem;
    color: var(--text-light);
}

.easter-egg-footer {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    opacity: 0.8;
}

.easter-egg-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.easter-egg-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: easterConfettiFall 3s ease-out forwards;
}

@keyframes easterConfettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .easter-egg-content {
        padding: 1.75rem 1.5rem;
    }
    .easter-egg-title {
        font-size: 1.3rem;
    }
    .easter-egg-main {
        font-size: 1.25rem;
    }
}
