@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

        .bento-golf-wrapper {
            font-family: 'Pretendard', sans-serif;
            background-color: #ffffff; /* 순백색의 화사하고 깨끗한 메인 배경 */
            color: #0f172a; /* 딥 다크 슬레이트 기본 텍스트 */
            overflow-x: hidden;
        }

        .bento-golf-wrapper p {
            word-break: keep-all;
        }

        /* 럭셔리 라이트 테마에 최적화된 마이크로 보더와 미려한 소프트 섀도우 */
        .bento-card {
            background: #ffffff;
            border: 1px solid #e2e8f0; /* 슬레이트 200번 마이크로 보더 */
            border-radius: 1.5rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -2px rgba(15, 23, 42, 0.02);
        }

        .bento-card:hover {
            background: #ffffff;
            border-color: #cbd5e1; /* 호버 시 한 단계 짙어지는 보더 */
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
        }

        /* 고급 라이트 테마를 위한 은은한 다크 그레이 광원 그림자 효과 */
        .glow-effect {
            box-shadow: 0 10px 40px -15px rgba(15, 23, 42, 0.06);
        }

        #main { padding-top: 0px !important; }
        
        .wp-h1-override {
            font-size: 0.75rem !important;
            line-height: 1 !important;
            margin: 0 !important;
            padding: 0.5rem 1.25rem !important;
            display: inline-block !important;
            font-weight: 700 !important;
            letter-spacing: 0.1em !important;
            text-transform: uppercase !important;
        }

        /* 프리미엄 딥 다크 슬레이트 그라데이션 타이틀 */
        .wp-title-span {
            display: block !important;
            font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
            font-weight: 900 !important;
            line-height: 1.1 !important;
            letter-spacing: -0.05em !important;
            background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 라이트 모드 부드러운 스크롤 바 커스텀 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 9999px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }