    /* Custom styles for Bray'z Quesadillas & More */

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Selection color */
    ::selection {
        background-color: rgba(219, 150, 15, 0.3);
        color: #f9edcc;
    }

    /* Navbar scroll effect */
    #navbar.scrolled {
        background-color: rgba(10, 26, 46, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(100, 125, 152, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a1a2e;
    }
    ::-webkit-scrollbar-thumb {
        background: #334e68;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #627d98;
    }

    /* Fade-in animation */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Slide-in from left */
    .slide-in-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Slide-in from right */
    .slide-in-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger children */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
    .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
    .stagger-children.visible > * {
        opacity: 1;
        transform: translateY(0);
    }

    /* Pulse animation for the live dot */
    @keyframes pulse-ring {
        0% { transform: scale(0.8); opacity: 1; }
        100% { transform: scale(2); opacity: 0; }
    }
    .animate-pulse-ring::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: rgba(234, 191, 87, 0.5);
        animation: pulse-ring 1.5s ease-out infinite;
    }

    /* Image hover zoom */
    .img-zoom {
        overflow: hidden;
    }
    .img-zoom img {
        transition: transform 0.5s ease;
    }
    .img-zoom:hover img {
        transform: scale(1.05);
    }

    /* Gold gradient text */
    .text-gold-gradient {
        background: linear-gradient(135deg, #eabf57 0%, #db960f 50%, #e3a828 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Card hover lift */
    .card-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card-lift:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* Mobile menu transition */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    #mobile-menu.open {
        max-height: 400px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-display {
            font-size: clamp(2rem, 8vw, 3rem);
        }
    }

    /* Print styles */
    @media print {
        #navbar, .animate-pulse {
            display: none;
        }
        body {
            background: white;
            color: black;
        }
    }
