/* 폰트 및 기본 정의 */
body {
    font-family: 'Gowun Dodum', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0b0f19; /* 매우 깊은 다크 네이비 */
    color: #e2e8f0;
    line-height: 1.6;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.fw-extrabold {
    font-weight: 800;
}

/* 브랜드 타이틀 스타일 (녹색 포인트) */
.brand-text {
    font-size: 1.6rem;
    letter-spacing: -0.05em;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.text-green-point {
    color: #00ff66 !important;
}

/* 블로그 본문 뷰어 (다크 스타일) */
.post-content {
    background: #151b2c;
    border-radius: 18px;
    padding: 35px 40px;
    border: 1px solid #1e293b;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #cbd5e1;
    word-break: keep-all;
}

.post-content p {
    margin-bottom: 20px;
}

/* 레퍼런스 섹션 */
.reference-card {
    background-color: #1e2538;
    border-radius: 15px;
    padding: 20px;
    border-left: 5px solid #00ff66;
    border-top: 1px solid #2d3748;
    border-right: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
}

.reference-card a {
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
}

.reference-card a:hover {
    color: #00ff66;
    text-decoration: underline;
}

/* 카드 줌 애니메이션 */
.cinematic-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
    border-radius: 18px;
    overflow: hidden;
    background-color: #151b2c !important;
    border: 1px solid #1e293b !important;
}

.cinematic-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 255, 102, 0.15) !important;
    border-color: #00ff66 !important;
}

.cinematic-card .card-title a {
    color: #f1f5f9 !important;
    transition: color 0.2s ease;
}

.cinematic-card:hover .card-title a {
    color: #00ff66 !important;
}

/* 커스텀 네온 그린 배지 및 버튼 */
.badge-green-point {
    background-color: #00ff66 !important;
    color: #000000 !important;
    font-weight: bold;
}

.btn-green-point {
    background-color: #00ff66 !important;
    border-color: #00ff66 !important;
    color: #000000 !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-green-point:hover {
    background-color: #00cc52 !important;
    border-color: #00cc52 !important;
    color: #000000 !important;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.5);
}

.btn-outline-green-point {
    color: #00ff66 !important;
    border-color: #00ff66 !important;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.btn-outline-green-point:hover {
    color: #000000 !important;
    background-color: #00ff66 !important;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.4);
}

/* 어드민 탭 전용 */
.nav-pills .nav-link {
    color: #94a3b8;
}

.nav-pills .nav-link.active {
    background-color: #00ff66;
    color: #000000;
}

/* 모바일 전용 반응형 브레이크아웃 */
@media (max-width: 576px) {
    .post-content {
        padding: 20px;
        font-size: 1.05rem;
        line-height: 1.7;
    }
}
