    /* Custom styles for Donut Queen */

    :root {
        --charcoal-950: #080808;
        --charcoal-900: #0f0f0f;
        --charcoal-800: #1a1a1a;
        --charcoal-700: #2a2a2a;
        --coral-500: #D4613C;
        --gold-500: #C9A84C;
    }

    * {
        scroll-behavior: smooth;
    }

    html {
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    /* Navbar scroll effect */
    #navbar.scrolled {
        background: rgba(8, 8, 8, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    /* Floating animation */
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    /* Scroll line animation */
    @keyframes scroll-line {
        0% { height: 0; opacity: 0; }
        50% { height: 48px; opacity: 1; }
        100% { height: 48px; opacity: 0; }
    }

    .animate-scroll-line {
        animation: scroll-line 2s ease-in-out infinite;
    }

    /* Reveal animations */
    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: translate(0, 0);
    }

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0f0f0f;
    }

    ::-webkit-scrollbar-thumb {
        background: #2a2a2a;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #C9A84C;
    }

    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #0f0f0f inset !important;
        -webkit-text-fill-color: #f7f7f7 !important;
    }

    /* Selection color */
    ::selection {
        background: rgba(212, 97, 60, 0.3);
        color: #f7f7f7;
    }

    /* Mobile menu transitions */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #mobile-menu.open {
        max-height: 400px;
    }

    /* Image hover zoom wrapper */
    .img-zoom {
        overflow: hidden;
    }

    .img-zoom img {
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .img-zoom:hover img {
        transform: scale(1.05);
    }

    /* Subtle shimmer on gold elements */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    .gold-shimmer {
        background: linear-gradient(90deg, #C9A84C 0%, #f0d48a 50%, #C9A84C 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 4s linear infinite;
    }

    /* Button ripple effect */
    .btn-ripple {
        position: relative;
        overflow: hidden;
    }

    .btn-ripple::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-ripple:active::after {
        width: 300px;
        height: 300px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        html {
            scroll-padding-top: 70px;
        }
    }
