/* Apple-style premium styling with romance tones */
        body {
            background-color: #050102;
        }
        .apple-glass {
            background: rgba(18, 10, 12, 0.65);
            backdrop-filter: saturate(180%) blur(24px);
            -webkit-backdrop-filter: saturate(180%) blur(24px);
            border: 1px solid rgba(255, 113, 133, 0.08);
        }
        .apple-card {
            background: linear-gradient(180deg, rgba(255, 113, 133, 0.04) 0%, rgba(255, 113, 133, 0.01) 100%);
            border: 1px solid rgba(255, 113, 133, 0.05);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .apple-card:hover {
            border-color: rgba(255, 113, 133, 0.15);
            background: linear-gradient(180deg, rgba(255, 113, 133, 0.06) 0%, rgba(255, 113, 133, 0.02) 100%);
        }
        .text-glow-rose {
            text-shadow: 0 0 35px rgba(244, 63, 94, 0.4);
        }
        .bg-subtle-rose-grid {
            background-size: 60px 60px;
            background-image:
                linear-gradient(to right, rgba(244, 63, 94, 0.01) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(244, 63, 94, 0.01) 1px, transparent 1px);
        }
        /* Custom scrollbars matching theme */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #050102;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(244, 63, 94, 0.2);
            border-radius: 9999px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(244, 63, 94, 0.4);
        }
