    /* Custom styles for Miss Sixty */

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Floating card animations */
    @keyframes float1 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-12px) rotate(0.5deg); }
    }
    @keyframes float2 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(-0.5deg); }
    }
    @keyframes float3 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(0.3deg); }
    }
    @keyframes float4 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    }

    .floating-card-1 { animation: float1 6s ease-in-out infinite; }
    .floating-card-2 { animation: float2 5s ease-in-out infinite 0.5s; }
    .floating-card-3 { animation: float3 7s ease-in-out infinite 1s; }
    .floating-card-4 { animation: float4 4s ease-in-out infinite 0.3s; }

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

    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(30px);
    }

    .reveal[data-reveal="left"] {
        transform: translateX(-30px);
    }

    .reveal[data-reveal="right"] {
        transform: translateX(30px);
    }

    /* Nav scroll state */
    nav.scrolled {
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    }

    nav.scrolled .text-white {
        color: #fff !important;
    }

    /* Mobile menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .floating-card-1,
        .floating-card-2,
        .floating-card-3,
        .floating-card-4 {
            animation: none;
        }
        .reveal {
            opacity: 1 !important;
            transform: none !important;
        }
        html {
            scroll-behavior: auto;
        }
    }

    /* Selection color */
    ::selection {
        background: rgba(20, 184, 166, 0.3);
        color: #fff;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #020617;
    }
    ::-webkit-scrollbar-thumb {
        background: #1e293b;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #0f766e;
    }

    /* Image placeholder fallback */
    img {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }
