/* Existing CSS styles would be here */

/* Hot Article Banner Styles */
.hot-article-banner {
    max-width: 1200px;
    margin: 25px auto 35px auto;
    padding: 18px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    width: calc(100% - 40px);
    position: relative;
    overflow: hidden;
}

.hot-article-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.hot-article-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.hot-article-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #212529;
    width: 100%;
    gap: 18px;
}

.hot-article-tag {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
    min-width: 80px;
    text-align: center;
}

.hot-article-title {
    font-size: 20px;
    font-weight: 700;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #212529;
    transition: color 0.2s ease;
}

.hot-article-link:hover .hot-article-title {
    color: #0d6efd;
}

.hot-article-date {
    color: #6c757d;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: 500;
}

/* Category badges for domain cards */
.domain-category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.category-ai_premium { background: linear-gradient(135deg, #ff6b6b, #ff8e53); color: white; }
.category-short_domain { background: linear-gradient(135deg, #4ecdc4, #44a08d); color: white; }
.category-brandable { background: linear-gradient(135deg, #6a11cb, #2575fc); color: white; }
.category-general { background: linear-gradient(135deg, #6c757d, #495057); color: white; }

/* Reduce icon sizes in header buttons */
.mobile-header-btns svg {
    width: 12px;
    height: 12px;
}

.filter-container svg {
    width: 14px;
    height: 14px;
}

/* Reduce domain card icons */
.domain-registrar svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.card-copy-toast svg,
.copy-toast svg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 6px;
}

.back-to-top svg {
    width: 14px;
    height: 14px;
}

/* Dark mode support */
[data-theme="dark"] .hot-article-banner {
    background: linear-gradient(135deg, #2d2d30 0%, #212124 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

[data-theme="dark"] .hot-article-banner::before {
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

[data-theme="dark"] .hot-article-link {
    color: #f8f9fa;
}

[data-theme="dark"] .hot-article-title {
    color: #f8f9fa;
}

[data-theme="dark"] .hot-article-link:hover .hot-article-title {
    color: #6ea8fe;
}

[data-theme="dark"] .hot-article-date {
    color: #adb5bd;
}