body { font-family: 'Pretendard', sans-serif; word-break: keep-all; }
        .serif { font-family: 'Nanum Myeongjo', serif; }
        .bg-navy { background-color: #050a16; }
        .text-gold { color: #d4af37; }
        .bg-gold { background-color: #d4af37; }
        
        /* 화려한 그라데이션 및 오버레이 */
        .hero-section {
            background: linear-gradient(rgba(5, 10, 22, 0.8), rgba(5, 10, 22, 0.6)), 
                        url('/images/mb01.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* 인터랙티브 요소: 카드 호버 */
        .interactive-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .interactive-card:hover {
            transform: translateY(-15px);
            border-color: #d4af37;
            box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
        }

        /* 텍스트 애니메이션 느낌 */
        .fade-in-up {
            animation: fadeInUp 1s ease-out forwards;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        [x-cloak] { display: none !important; }