/* 메인 콘텐츠 영역 스타일 */

/* RSS 버튼 스타일 */
.btn-rss {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    font-size: 0.9rem;
}

.btn-rss:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
    color: white;
    text-decoration: none;
}

.btn-rss i {
    font-size: 1rem;
}

/* RSS 피처 아이템 스타일 */
.rss-feature {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.rss-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
    color: white !important;
    text-decoration: none;
}

/* 히어로 액션 스타일 */
.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 메인 콘텐츠 영역 너비 설정 */
.main-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* 섹션 간격 조정 */
.content-section {
    margin-bottom: 20px;
    padding: 15px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

/* 섹션 제목 스타일 */
.section-title {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: #6b6b6b !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    border-bottom: none !important;
    text-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.section-title i {
    color: #1e40af !important;
    font-size: 1.3rem !important;
    text-shadow: none !important;
    filter: none !important;
}

/* 카드 그리드 레이아웃 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
    max-width: none;
}

/* 기본 카드 스타일 */
.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.streamer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.streamer-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.streamer-card:hover .card-content {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(12px) !important;
}

.streamer-card:hover .streamer-status {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 카드 이미지 영역 - 새로운 디자인 */
.card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: all 0.3s ease !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
    filter: brightness(1.1) contrast(1.1) !important;
    min-height: 180px !important;
    min-width: 100% !important;
    background: #f3f4f6;
}

/* 이미지 로딩 실패 시 대체 스타일 */
.card-image img:not([src]),
.card-image img[src=""],
.card-image img[src*="error"] {
    display: none !important;
}

.card-image::after {
    content: '📺';
    position: absolute;
    font-size: 2rem;
    color: #9ca3af;
    z-index: 1;
    display: none;
}

.card-image:has(img:not([src]))::after,
.card-image:has(img[src=""])::after,
.card-image:has(img[src*="error"])::after {
    display: block;
}

/* 스트리머 카드 - 독립적인 배경 이미지 스타일 */
.streamer-card {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    min-height: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 260px !important;
}

/* 배경 오버레이 - 이미지가 더 잘 보이도록 가벼운 오버레이 */
.streamer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    border-radius: 12px;
    z-index: 1;
}

/* 이미지 숨기기 - 배경 이미지만 사용 */
.streamer-card .card-image {
    display: none !important;
}

/* 상태 표시 - 우상단 고정 */
.streamer-card .streamer-status {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10 !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.streamer-card .streamer-status.online {
    background: rgba(0, 212, 170, 0.9) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3) !important;
}

.streamer-card .streamer-status.offline {
    background: rgba(108, 117, 125, 0.9) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3) !important;
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

/* 카드 배지 (LIVE, 온라인 등) */
.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 시청자 수 표시 */
.view-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 스트리머 상태 표시 - 새로운 디자인 */
.streamer-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    z-index: 4;
}

.streamer-status.online {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    animation: pulse 2s infinite;
}

.streamer-status.offline {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0, 212, 170, 0.6); }
    100% { box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4); }
}

/* 클립 영상 재생 버튼 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.content-card:hover .play-button {
    opacity: 1;
}

/* 클립 영상 길이 표시 */
.clip-duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 카드 콘텐츠 영역 - 새로운 디자인 */
.card-content {
    padding: 12px;
    background: #ffffff !important;
    position: relative;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    min-height: 120px;
}

/* 카드 제목 - 새로운 스타일 */
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 4px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 2.2em;
    min-height: 2.2em;
}

/* 카드 설명 - 새로운 스타일 */
.card-description {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 4px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    flex: none;
    min-height: 1.2em;
    max-height: 1.2em;
}

/* 카드 메타 정보 */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 30px;
    flex-shrink: 0;
    line-height: 1.1;
}

.card-meta span {
    padding: 2px 6px;
    border-radius: 4px;
    background: #f8f9fa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 스트리머 카드 콘텐츠 - 독립적인 투명 배경 스타일 */
.streamer-card .card-content {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 8px !important;
    position: relative !important;
    z-index: 5 !important;
    margin: 0 !important;
    flex: none !important;
    height: auto !important;
    min-height: auto !important;
    max-height: 70px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 4px !important;
}

.streamer-card .card-title {
    color: #ffffff !important;
    font-size: 1.0rem !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 4px !important;
    line-height: 1.1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: auto !important;
    min-height: auto !important;
}


.streamer-card .card-meta {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    flex-shrink: 0 !important;
}

.streamer-card .card-meta .followers {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 0.7rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    text-shadow: none !important;
    backdrop-filter: blur(5px) !important;
    line-height: 1.0 !important;
}


/* 클립 카드 특별 스타일 */
.clip-card .card-meta .clip-uploader {
    background: #e8f5e8;
    color: #2e7d32;
    font-weight: 500;
}

.clip-card .card-meta .upload-time {
    background: #fff3e0;
    color: #f57c00;
}

/* 클립영상 섹션 제목 스타일 */
.clip-card .card-title {
    color: #059669 !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    text-shadow: none !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

/* 방송 관련 카드 특별 스타일 */
.broadcast-card .card-meta .broadcast-type {
    background: #e1f5fe;
    color: #0277bd;
    font-weight: 500;
}

.broadcast-card .card-meta .difficulty {
    background: #fff8e1;
    color: #f9a825;
}

/* 방송 관련 섹션 제목 스타일 */
.broadcast-card .card-title {
    color: #7c3aed !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-shadow: none !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

/* 방송 관련 카드 높이 조정 */
.broadcast-card {
    height: 340px !important;
}

.broadcast-card .card-description {
    -webkit-line-clamp: 4 !important;
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
}

/* 게임방송 카드 특별 스타일 */
.content-card:not(.streamer-card):not(.clip-card):not(.broadcast-card) .card-meta .streamer {
    background: #e8f5e8;
    color: #2e7d32;
    font-weight: 500;
}

.content-card:not(.streamer-card):not(.clip-card):not(.broadcast-card) .card-meta .category {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* 게임방송 섹션 제목 강화 - 인기 영상 섹션 제외 */
.content-card:not(.streamer-card):not(.clip-card):not(.broadcast-card):not(.video-card) .card-title {
    color: #dc2626 !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    text-shadow: none !important;
    letter-spacing: -0.01em !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

/* 광고 이미지 스타일 */
.ad-image {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-image img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block !important;
}

.ad-image:hover img {
    transform: scale(1.05);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .card-image {
        height: 150px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .content-section {
        margin-bottom: 15px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 10px;
    }
    
    .card-title {
        font-size: 0.95rem;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
}

/* 애니메이션 효과 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeInUp 0.5s ease forwards;
}

.content-card:nth-child(1) { animation-delay: 0.1s; }
.content-card:nth-child(2) { animation-delay: 0.2s; }
.content-card:nth-child(3) { animation-delay: 0.3s; }
.content-card:nth-child(4) { animation-delay: 0.4s; }
.content-card:nth-child(5) { animation-delay: 0.5s; }
.content-card:nth-child(6) { animation-delay: 0.6s; }
.content-card:nth-child(7) { animation-delay: 0.7s; }
.content-card:nth-child(8) { animation-delay: 0.8s; }

/* 로딩 상태 */
.card-loading {
    opacity: 0.6;
    pointer-events: none;
}

.card-loading .card-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 접근성 개선 */
.content-card:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

.card-title:focus,
.card-description:focus {
    outline: none;
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
    .content-card {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .card-title {
        color: #e2e8f0;
    }
    
    .card-description {
        color: #a0aec0;
    }
    
    .section-title {
        color: #e2e8f0;
    }
    
    .card-meta span {
        background: #4a5568;
        color: #a0aec0;
    }
}

/* 등록된 스트리머 라이브 방송 섹션 전용 스타일 - 최고 우선순위 */
#streamer-streams .content-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

#streamer-streams .content-card:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3) !important;
}

#streamer-streams .content-card .card-content {
    background: transparent !important;
}

#streamer-streams .card-title {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

#streamer-streams .card-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

#streamer-streams .card-meta span {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* 인기 영상 섹션 전용 스타일 - 최고 우선순위 */
.content-section:nth-of-type(3) .content-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    border: 2px solid rgba(226, 232, 240, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.content-section:nth-of-type(3) .content-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

.content-section:nth-of-type(3) .content-card .card-content {
    background: transparent !important;
}

/* 인기 영상 섹션 제목 - 최고 우선순위 */
.content-section:nth-of-type(3) .content-card .card-title,
.content-section:nth-of-type(3) .video-card .card-title,
.content-section:nth-of-type(3) .card-title {
    color: #1e40af !important;
    font-weight: 600 !important;
    font-size: 1.0rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    position: relative !important;
    text-shadow: none !important;
    letter-spacing: normal !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

/* 인기 영상 섹션 제목 내부 링크 스타일 - 완전 커스텀 */
.content-section:nth-of-type(3) .content-card .card-title a,
.content-section:nth-of-type(3) .video-card .card-title a,
.content-section:nth-of-type(3) .card-title a {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    transition: all 0.3s ease !important;
    display: block !important;
    position: relative !important;
    text-shadow: none !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    box-shadow: none !important;
}

.content-section:nth-of-type(3) .content-card .card-title a:hover,
.content-section:nth-of-type(3) .video-card .card-title a:hover,
.content-section:nth-of-type(3) .card-title a:hover {
    color: #1d4ed8 !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    text-shadow: 0 1px 3px rgba(30, 64, 175, 0.3) !important;
}

.content-section:nth-of-type(3) .content-card .card-title a:focus,
.content-section:nth-of-type(3) .video-card .card-title a:focus,
.content-section:nth-of-type(3) .card-title a:focus {
    outline: none !important;
    text-decoration: none !important;
}

.content-section:nth-of-type(3) .content-card .card-title a:visited,
.content-section:nth-of-type(3) .video-card .card-title a:visited,
.content-section:nth-of-type(3) .card-title a:visited {
    color: inherit !important;
    text-decoration: none !important;
}

/* 인기 영상 섹션 제목 호버 - 최고 우선순위 */
.content-section:nth-of-type(3) .content-card .card-title:hover,
.content-section:nth-of-type(3) .video-card .card-title:hover,
.content-section:nth-of-type(3) .card-title:hover {
    color: #1d4ed8 !important;
    transform: translateY(-1px) !important;
    text-shadow: 0 1px 3px rgba(30, 64, 175, 0.3) !important;
}

/* 인기 영상 섹션 제목 언더라인 - 최고 우선순위 */
.content-section:nth-of-type(3) .content-card .card-title::after,
.content-section:nth-of-type(3) .video-card .card-title::after,
.content-section:nth-of-type(3) .card-title::after,
.content-section:nth-of-type(3) .content-card .card-title a::after,
.content-section:nth-of-type(3) .video-card .card-title a::after,
.content-section:nth-of-type(3) .card-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.content-section:nth-of-type(3) .content-card .card-title:hover::after,
.content-section:nth-of-type(3) .video-card .card-title:hover::after,
.content-section:nth-of-type(3) .card-title:hover::after,
.content-section:nth-of-type(3) .content-card .card-title a:hover::after,
.content-section:nth-of-type(3) .video-card .card-title a:hover::after,
.content-section:nth-of-type(3) .card-title a:hover::after {
    width: 100%;
}

.content-section:nth-of-type(3) .card-description {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.content-section:nth-of-type(3) .card-meta span {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}
