    /* Custom styles for Ssk Café */

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

    /* Selection color */
    ::selection {
        background-color: rgba(13, 148, 136, 0.3);
        color: #0f766e;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #115e59;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #0d9488;
    }

    /* Navbar transitions */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #2dd4bf;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile links */
    .mobile-link {
        position: relative;
        padding-left: 0;
        transition: padding-left 0.2s ease;
    }
    .mobile-link:hover {
        padding-left: 12px;
    }
    .mobile-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: #2dd4bf;
        transition: width 0.2s ease;
    }
    .mobile-link:hover::before {
        width: 8px;
    }

    /* Menu card hover */
    .menu-card-reveal:hover {
        border-color: rgba(45, 212, 191, 0.2) !important;
        transform: translateY(-4px);
        transition: all 0.4s ease;
    }

    /* Experience card hover */
    .experience-card-reveal {
        transition: transform 0.4s ease;
    }
    .experience-card-reveal:hover {
        transform: translateY(-8px);
    }

    /* Subtle grain overlay for sections */
    .grain-overlay {
        position: relative;
    }
    .grain-overlay::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        border-radius: inherit;
    }

    /* Form focus styles */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
    }

    /* Ensure hero text is always visible */
    #hero h1,
    #hero p,
    #hero a,
    #hero .inline-flex {
        opacity: 1 !important;
        animation: none !important;
    }

    /* Print styles */
    @media print {
        nav, #mobile-menu-btn, footer {
            display: none;
        }
        body {
            color: #000;
            background: #fff;
        }
    }
