/* 모바일 가독성 개선 CSS */

@media screen and (max-width: 768px) {
    /* 모바일 기본 폰트 크기 증가 */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    /* 카테고리 카드 개선 */
    .category-card {
        margin-bottom: 16px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    .category-card-header {
        padding: 12px 16px !important;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
    }
    
    .category-card-title {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: white !important;
    }
    
    /* 링크 아이템 한 줄 표시 */
    .category-link {
        display: flex !important;
        align-items: center !important;
        padding: 12px 16px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        overflow: hidden !important;
    }
    
    .category-link:last-child {
        border-bottom: none !important;
    }
    
    .category-link:hover {
        background: rgba(255, 107, 53, 0.05) !important;
    }
    
    /* 순위 표시 최소화 */
    .category-rank {
        min-width: 28px !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-right: 12px !important;
        border-radius: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .category-rank.top3 {
        min-width: 32px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    /* 사이트 이름 한 줄 처리 */
    .category-site-name {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1 !important;
        margin-right: 8px !important;
    }
    
    /* 왕관 아이콘 숨김 */
    .crown-icon {
        display: none !important;
    }
    
    /* 링크 버튼 최소화 */
    .link-badge {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    /* 네비게이션 버튼 개선 */
    .category-nav-btn {
        padding: 12px 16px !important;
        min-width: 80px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(255, 107, 53, 0.2) !important;
        color: #333 !important;
    }
    
    .category-nav-icon {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }
    
    .category-nav-text {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #333 !important;
    }
    
    /* 헤더 개선 */
    .header-middle {
        padding: 12px 0 !important;
        min-height: 60px !important;
        background: rgba(26,14,8,0.95) !important;
    }
    
    /* 컨텐츠 컨테이너 패딩 */
    .content-container {
        padding: 16px 12px !important;
    }
    
    /* 터치 영역 개선 */
    .category-link,
    .category-nav-btn,
    .btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* 스크롤 성능 개선 */
    .category-card-body {
        -webkit-overflow-scrolling: touch;
        will-change: transform;
        padding: 0 !important;
    }
    
    /* 카테고리 더보기 버튼 */
    .category-more-btn {
        font-size: 0.8rem !important;
        padding: 4px 10px !important;
    }
}

/* 작은 모바일 화면 (480px 이하) */
@media screen and (max-width: 480px) {
    .category-card {
        margin-bottom: 12px !important;
        border-radius: 10px !important;
    }
    
    .category-card-header {
        padding: 10px 14px !important;
    }
    
    .category-card-title {
        font-size: 0.85rem !important;
    }
    
    .category-link {
        padding: 10px 14px !important;
        min-height: 44px !important;
        max-height: 44px !important;
    }
    
    .category-site-name {
        font-size: 0.85rem !important;
    }
    
    .category-rank {
        min-width: 26px !important;
        width: 26px !important;
        height: 26px !important;
        font-size: 0.8rem !important;
        margin-right: 10px !important;
    }
    
    .category-rank.top3 {
        min-width: 28px !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }
    
    .link-badge {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .content-container {
        padding: 12px 8px !important;
    }
}

/* 다크모드 대응 */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    body {
        background: #1a0e08 !important;
    }
    
    .category-card {
        background: rgba(44, 24, 16, 0.98) !important;
        border-color: rgba(255, 107, 53, 0.3) !important;
    }
    
    .category-link {
        background: rgba(44, 24, 16, 0.95) !important;
        border-bottom-color: rgba(255, 107, 53, 0.2) !important;
    }
    
    .category-site-name {
        color: #ffffff !important;
    }
    
    .category-nav-btn {
        background: rgba(44, 24, 16, 0.95) !important;
        color: #ffffff !important;
    }
    
    .category-nav-text {
        color: #ffffff !important;
    }
}