:root {
    --sunset-primary: #ff6b35;
    --sunset-secondary: #f7931e;
    --sunset-accent: #ff8c42;
    --sunset-warm: #ffb347;
    --sunset-deep: #d2691e;
    --sunset-bg: #fff;
    --sunset-bg-light: #fff8f5;
    --sunset-text: #2c1810;
    --sunset-text-light: #8b4513;
    --sunset-text-lighter: #cd853f;
    --sunset-border: #ffe4d6;
    --sunset-shadow: rgba(255, 107, 53, 0.15);
    --sunset-shadow-dark: rgba(255, 107, 53, 0.25);
}


.sunset-main-content {
    background: linear-gradient(135deg, var(--sunset-bg-light) 0%, #fff5f0 100%);
    min-height: calc(100vh - 80px);
    padding: 0;
    position: relative;
}

.sunset-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ff8c42" opacity="0.1"><circle cx="20" cy="20" r="1"/><circle cx="80" cy="40" r="0.8"/><circle cx="40" cy="80" r="1.2"/><circle cx="70" cy="10" r="0.6"/><circle cx="10" cy="60" r="1"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.2;
}


.sunset-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}


.sunset-welcome-banner {
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.sunset-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-secondary) 100%);
    border-radius: 25px;
    padding: 50px;
    color: #fff;
    box-shadow: 0 10px 40px var(--sunset-shadow-dark);
    position: relative;
    overflow: hidden;
}

.sunset-banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: sunsetBannerGlow 12s ease-in-out infinite;
}

@keyframes sunsetBannerGlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

.sunset-banner-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.sunset-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sunset-banner-title i {
    font-size: 40px;
    color: var(--sunset-warm);
}

.sunset-banner-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
}

.sunset-banner-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.sunset-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.sunset-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.sunset-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sunset-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.sunset-banner-decoration {
    width: 200px;
    height: 200px;
    position: relative;
    flex-shrink: 0;
}

.sunset-decoration-sun {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--sunset-warm) 0%, var(--sunset-accent) 100%);
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 40px;
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(255, 179, 71, 0.5);
}

.sunset-decoration-sun.sunset-sun-rotate {
    animation: sunsetSunRotate 20s linear infinite;
}

@keyframes sunsetSunRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sunset-decoration-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sunset-ray {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 71, 0.6), transparent);
    border-radius: 2px;
    transform-origin: center;
}

.sunset-ray-1 {
    width: 100px;
    height: 4px;
    top: 98px;
    left: 50px;
    transform: rotate(0deg);
}

.sunset-ray-2 {
    width: 80px;
    height: 3px;
    top: 50px;
    left: 60px;
    transform: rotate(45deg);
}

.sunset-ray-3 {
    width: 90px;
    height: 3px;
    top: 146px;
    left: 55px;
    transform: rotate(-45deg);
}

.sunset-ray-4 {
    width: 70px;
    height: 2px;
    top: 98px;
    left: 65px;
    transform: rotate(90deg);
}

.sunset-ray.sunset-ray-glow {
    animation: sunsetRayGlow 3s ease-in-out infinite;
}

@keyframes sunsetRayGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}


.sunset-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}


.sunset-content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.sunset-articles-section {
    background: var(--sunset-bg);
    border-radius: 20px;
    box-shadow: 0 4px 25px var(--sunset-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sunset-articles-section:hover {
    box-shadow: 0 6px 35px var(--sunset-shadow-dark);
}

.sunset-section-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-secondary) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sunset-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sunset-section-title i {
    font-size: 28px;
    color: var(--sunset-warm);
}

.sunset-section-tabs {
    display: flex;
    gap: 10px;
}

.sunset-tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sunset-tab-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.sunset-tab-item.sunset-tab-active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.sunset-tab-item i {
    font-size: 16px;
}

.sunset-articles-container {
    padding: 40px;
}


.sunset-empty-state {
    text-align: center;
    padding: 80px 40px;
    color: var(--sunset-text-light);
}

.sunset-empty-icon {
    margin-bottom: 25px;
}

.sunset-empty-icon i {
    font-size: 64px;
    color: var(--sunset-border);
}

.sunset-empty-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--sunset-text);
    margin: 0 0 15px 0;
}

.sunset-empty-desc {
    font-size: 16px;
    color: var(--sunset-text-light);
    margin: 0;
    line-height: 1.6;
}


.sunset-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}


.sunset-article-card {
    background: var(--sunset-bg);
    border: 2px solid var(--sunset-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sunset-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.sunset-article-card:hover::before,
.sunset-article-card.sunset-card-hover::before {
    left: 100%;
}

.sunset-article-card:hover,
.sunset-article-card.sunset-card-hover {
    border-color: var(--sunset-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--sunset-shadow-dark);
}

.sunset-article-card.sunset-featured {
    border-color: var(--sunset-accent);
    background: linear-gradient(135deg, var(--sunset-bg) 0%, var(--sunset-bg-light) 100%);
}

.sunset-card-header {
    padding: 20px 25px 0;
}

.sunset-article-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.sunset-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.sunset-badge:hover {
    transform: scale(1.05);
}

.sunset-badge-top {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.sunset-badge-new {
    background: linear-gradient(135deg, var(--sunset-secondary) 0%, var(--sunset-accent) 100%);
}

.sunset-badge-hot {
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-deep) 100%);
}

.sunset-badge i {
    font-size: 10px;
}

.sunset-card-content {
    padding: 0 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sunset-article-title {
    margin: 0 0 15px 0;
}

.sunset-title-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--sunset-text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.sunset-title-link:hover {
    color: var(--sunset-primary);
}

.sunset-article-excerpt {
    font-size: 14px;
    color: var(--sunset-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.sunset-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--sunset-text-lighter);
    margin-bottom: 15px;
}

.sunset-meta-left {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sunset-meta-right {
    display: flex;
    gap: 10px;
}

.sunset-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.sunset-meta-item:hover {
    color: var(--sunset-primary);
}

.sunset-meta-item i {
    font-size: 14px;
    color: var(--sunset-accent);
}

.sunset-views {
    font-weight: 600;
    color: var(--sunset-primary);
}

.sunset-card-footer {
    padding: 0 25px 25px;
}

.sunset-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-secondary) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.sunset-read-more:hover {
    background: linear-gradient(135deg, var(--sunset-secondary) 0%, var(--sunset-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--sunset-shadow);
}

.sunset-read-more.sunset-read-clicked {
    transform: scale(0.95);
}

.sunset-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sunset-read-more:hover i {
    transform: translateX(3px);
}


.sunset-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
    align-self: start;
}


.sunset-sidebar-card {
    background: var(--sunset-bg);
    border-radius: 18px;
    box-shadow: 0 4px 20px var(--sunset-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--sunset-border);
}

.sunset-sidebar-card:hover,
.sunset-sidebar-card.sunset-sidebar-hover {
    box-shadow: 0 6px 30px var(--sunset-shadow-dark);
    transform: translateY(-3px);
    border-color: var(--sunset-primary);
}

.sunset-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
}

.sunset-card-title i {
    font-size: 20px;
    color: var(--sunset-warm);
}

.sunset-card-body {
    padding: 25px;
}


.sunset-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.sunset-avatar-wrapper {
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sunset-avatar-wrapper:hover,
.sunset-avatar-wrapper.sunset-avatar-hover {
    transform: scale(1.05);
}

.sunset-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--sunset-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sunset-avatar-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--sunset-primary), var(--sunset-accent));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sunset-avatar-wrapper:hover .sunset-avatar-glow {
    opacity: 0.3;
}

.sunset-profile-info {
    margin-bottom: 20px;
}

.sunset-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--sunset-text);
    margin: 0 0 10px 0;
}

.sunset-profile-bio {
    font-size: 14px;
    color: var(--sunset-text-light);
    margin: 0;
    line-height: 1.5;
}

.sunset-profile-stats {
    width: 100%;
}

.sunset-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sunset-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--sunset-bg-light);
    border: 2px solid var(--sunset-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sunset-stat-box:hover {
    background: var(--sunset-primary);
    border-color: var(--sunset-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--sunset-shadow);
}

.sunset-stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--sunset-primary);
    transition: color 0.3s ease;
}

.sunset-stat-box:hover .sunset-stat-num {
    color: #fff;
}

.sunset-stat-text {
    font-size: 12px;
    color: var(--sunset-text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.sunset-stat-box:hover .sunset-stat-text {
    color: rgba(255, 255, 255, 0.9);
}


.sunset-category-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.sunset-category-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--sunset-bg-light);
    border: 2px solid var(--sunset-border);
    border-radius: 15px;
    color: var(--sunset-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sunset-category-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.4s ease;
}

.sunset-category-tag:hover::before,
.sunset-category-tag.sunset-tag-hover::before {
    left: 100%;
}

.sunset-category-tag:hover,
.sunset-category-tag.sunset-tag-hover {
    background: var(--sunset-primary);
    color: #fff;
    border-color: var(--sunset-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--sunset-shadow);
}

.sunset-category-tag i {
    font-size: 12px;
    position: relative;
    z-index: 1;
}


.sunset-sites-list {
    max-height: 400px;
    overflow-y: auto;
}

.sunset-sites-list::-webkit-scrollbar {
    width: 6px;
}

.sunset-sites-list::-webkit-scrollbar-track {
    background: var(--sunset-bg-light);
    border-radius: 3px;
}

.sunset-sites-list::-webkit-scrollbar-thumb {
    background: var(--sunset-primary);
    border-radius: 3px;
}

.sunset-site-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sunset-site-item:last-child {
    margin-bottom: 0;
}

.sunset-site-item.sunset-site-clicked {
    transform: scale(0.98);
}

.sunset-site-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--sunset-bg-light);
    border: 2px solid var(--sunset-border);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sunset-site-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.4s ease;
}

.sunset-site-link:hover::before {
    left: 100%;
}

.sunset-site-link:hover {
    background: var(--sunset-bg);
    border-color: var(--sunset-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--sunset-shadow);
}

.sunset-site-icon {
    width: 40px;
    height: 40px;
    background: var(--sunset-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--sunset-border);
    position: relative;
    z-index: 1;
}

.sunset-site-icon img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.sunset-site-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.sunset-site-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sunset-text);
    line-height: 1.4;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunset-site-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--sunset-text-lighter);
}

.sunset-site-time,
.sunset-site-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sunset-site-time i,
.sunset-site-views i {
    font-size: 11px;
    color: var(--sunset-accent);
}

.sunset-site-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sunset-text-lighter);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sunset-site-link:hover .sunset-site-arrow {
    color: var(--sunset-primary);
    transform: translateX(3px);
}

.sunset-site-arrow i {
    font-size: 12px;
}

.sunset-empty-sites {
    text-align: center;
    padding: 40px 20px;
    color: var(--sunset-text-light);
}

.sunset-empty-sites i {
    font-size: 48px;
    color: var(--sunset-border);
    margin-bottom: 15px;
}

.sunset-empty-sites p {
    font-size: 14px;
    margin: 0;
}


.sunset-tip-card {
    background: linear-gradient(135deg, var(--sunset-bg-light) 0%, #fff5f0 100%);
    border-color: var(--sunset-accent);
}

.sunset-tip-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sunset-tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--sunset-shadow);
}

.sunset-tip-icon i {
    font-size: 24px;
    color: #fff;
}

.sunset-tip-text {
    flex: 1;
}

.sunset-tip-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sunset-text);
    margin: 0 0 10px 0;
}

.sunset-tip-text p {
    font-size: 14px;
    color: var(--sunset-text-light);
    margin: 0;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .sunset-container {
        padding: 0 20px;
    }

    .sunset-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sunset-sidebar {
        order: -1;
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .sunset-welcome-banner {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .sunset-banner-content {
        padding: 40px;
        gap: 30px;
    }

    .sunset-banner-title {
        font-size: 32px;
    }

    .sunset-banner-subtitle {
        font-size: 16px;
    }

    .sunset-banner-stats {
        gap: 25px;
    }

    .sunset-stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .sunset-stat-number {
        font-size: 28px;
    }

    .sunset-banner-decoration {
        width: 150px;
        height: 150px;
    }

    .sunset-decoration-sun {
        width: 90px;
        height: 90px;
        top: 30px;
        left: 30px;
    }

    .sunset-articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .sunset-section-header {
        padding: 25px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sunset-section-title {
        font-size: 22px;
    }

    .sunset-articles-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sunset-container {
        padding: 0 15px;
    }

    .sunset-welcome-banner {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .sunset-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 25px;
    }

    .sunset-banner-title {
        font-size: 28px;
        justify-content: center;
    }

    .sunset-banner-title i {
        font-size: 32px;
    }

    .sunset-banner-subtitle {
        font-size: 15px;
    }

    .sunset-banner-stats {
        justify-content: center;
        gap: 20px;
    }

    .sunset-stat-item {
        min-width: 90px;
        padding: 12px;
    }

    .sunset-stat-number {
        font-size: 24px;
    }

    .sunset-stat-label {
        font-size: 13px;
    }

    .sunset-banner-decoration {
        width: 120px;
        height: 120px;
        align-self: center;
    }

    .sunset-decoration-sun {
        width: 70px;
        height: 70px;
        top: 25px;
        left: 25px;
    }

    .sunset-sidebar {
        grid-template-columns: 1fr;
    }

    .sunset-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sunset-section-header {
        padding: 20px 25px;
    }

    .sunset-section-title {
        font-size: 20px;
    }

    .sunset-section-title i {
        font-size: 24px;
    }

    .sunset-section-tabs {
        width: 100%;
        justify-content: center;
    }

    .sunset-tab-item {
        flex: 1;
        justify-content: center;
        padding: 8px 15px;
        font-size: 13px;
    }

    .sunset-articles-container {
        padding: 25px 20px;
    }

    .sunset-card-header {
        padding: 15px 20px 0;
    }

    .sunset-card-content {
        padding: 0 20px 15px;
    }

    .sunset-card-footer {
        padding: 0 20px 20px;
    }

    .sunset-article-title {
        margin-bottom: 12px;
    }

    .sunset-title-link {
        font-size: 16px;
    }

    .sunset-article-excerpt {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .sunset-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .sunset-meta-left {
        gap: 12px;
    }

    .sunset-meta-item {
        font-size: 12px;
    }

    .sunset-read-more {
        padding: 10px 20px;
        font-size: 13px;
    }

    .sunset-card-body {
        padding: 20px;
    }

    .sunset-profile {
        margin-bottom: 20px;
    }

    .sunset-avatar-wrapper {
        margin-bottom: 15px;
    }

    .sunset-avatar {
        width: 70px;
        height: 70px;
    }

    .sunset-profile-name {
        font-size: 18px;
    }

    .sunset-profile-bio {
        font-size: 13px;
    }

    .sunset-stat-grid {
        gap: 12px;
    }

    .sunset-stat-box {
        padding: 12px;
    }

    .sunset-stat-num {
        font-size: 20px;
    }

    .sunset-stat-text {
        font-size: 11px;
    }

    .sunset-category-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    .sunset-site-link {
        padding: 12px;
        gap: 12px;
    }

    .sunset-site-icon {
        width: 35px;
        height: 35px;
    }

    .sunset-site-icon img {
        width: 28px;
        height: 28px;
    }

    .sunset-site-name {
        font-size: 13px;
    }

    .sunset-site-meta {
        font-size: 11px;
        gap: 10px;
    }

    .sunset-tip-content {
        gap: 15px;
    }

    .sunset-tip-icon {
        width: 45px;
        height: 45px;
    }

    .sunset-tip-icon i {
        font-size: 20px;
    }

    .sunset-tip-text h4 {
        font-size: 15px;
    }

    .sunset-tip-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sunset-container {
        padding: 0 12px;
    }

    .sunset-welcome-banner {
        padding: 25px 0;
        margin-bottom: 25px;
    }

    .sunset-banner-content {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .sunset-banner-title {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .sunset-banner-title i {
        font-size: 28px;
    }

    .sunset-banner-subtitle {
        font-size: 14px;
    }

    .sunset-banner-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .sunset-stat-item {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
    }

    .sunset-stat-number {
        font-size: 20px;
    }

    .sunset-stat-label {
        font-size: 12px;
    }

    .sunset-banner-decoration {
        width: 100px;
        height: 100px;
    }

    .sunset-decoration-sun {
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
    }

    .sunset-ray {
        display: none;
    }

    .sunset-section-header {
        padding: 18px 20px;
    }

    .sunset-section-title {
        font-size: 18px;
    }

    .sunset-section-title i {
        font-size: 20px;
    }

    .sunset-section-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .sunset-tab-item {
        padding: 10px 15px;
        font-size: 12px;
    }

    .sunset-articles-container {
        padding: 20px 15px;
    }

    .sunset-empty-state {
        padding: 60px 20px;
    }

    .sunset-empty-icon i {
        font-size: 48px;
    }

    .sunset-empty-title {
        font-size: 20px;
    }

    .sunset-empty-desc {
        font-size: 14px;
    }

    .sunset-card-header {
        padding: 12px 15px 0;
    }

    .sunset-card-content {
        padding: 0 15px 12px;
    }

    .sunset-card-footer {
        padding: 0 15px 15px;
    }

    .sunset-article-badges {
        gap: 6px;
        margin-bottom: 12px;
    }

    .sunset-badge {
        padding: 4px 8px;
        font-size: 11px;
    }

    .sunset-title-link {
        font-size: 15px;
    }

    .sunset-article-excerpt {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .sunset-article-meta {
        gap: 8px;
        margin-bottom: 10px;
    }

    .sunset-meta-left {
        gap: 10px;
    }

    .sunset-meta-item {
        font-size: 11px;
    }

    .sunset-read-more {
        padding: 8px 15px;
        font-size: 12px;
    }

    .sunset-card-title {
        font-size: 16px;
    }

    .sunset-card-title i {
        font-size: 18px;
    }

    .sunset-card-body {
        padding: 15px;
    }

    .sunset-profile {
        margin-bottom: 15px;
    }

    .sunset-avatar-wrapper {
        margin-bottom: 12px;
    }

    .sunset-avatar {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .sunset-profile-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .sunset-profile-bio {
        font-size: 12px;
    }

    .sunset-stat-grid {
        gap: 10px;
    }

    .sunset-stat-box {
        padding: 10px;
    }

    .sunset-stat-num {
        font-size: 18px;
    }

    .sunset-stat-text {
        font-size: 10px;
    }

    .sunset-category-cloud {
        gap: 8px;
    }

    .sunset-category-tag {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 12px;
    }

    .sunset-category-tag i {
        font-size: 10px;
    }

    .sunset-sites-list {
        max-height: 300px;
    }

    .sunset-site-item {
        margin-bottom: 10px;
    }

    .sunset-site-link {
        padding: 10px;
        gap: 10px;
    }

    .sunset-site-icon {
        width: 32px;
        height: 32px;
    }

    .sunset-site-icon img {
        width: 24px;
        height: 24px;
    }

    .sunset-site-name {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .sunset-site-meta {
        font-size: 10px;
        gap: 8px;
    }

    .sunset-site-arrow {
        width: 25px;
        height: 25px;
    }

    .sunset-site-arrow i {
        font-size: 10px;
    }

    .sunset-tip-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .sunset-tip-icon {
        width: 40px;
        height: 40px;
        align-self: center;
    }

    .sunset-tip-icon i {
        font-size: 18px;
    }

    .sunset-tip-text h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .sunset-tip-text p {
        font-size: 12px;
    }
}


.sunset-main-content:focus-within {
    outline: 2px solid var(--sunset-accent);
    outline-offset: 2px;
}

.sunset-title-link:focus,
.sunset-read-more:focus,
.sunset-category-tag:focus,
.sunset-site-link:focus,
.sunset-tab-item:focus {
    outline: 2px solid var(--sunset-accent);
    outline-offset: 2px;
}


@media (prefers-contrast: high) {

    .sunset-article-card,
    .sunset-sidebar-card,
    .sunset-site-link,
    .sunset-category-tag {
        border-width: 3px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .sunset-main-content::before,
    .sunset-banner-content::before,
    .sunset-decoration-sun,
    .sunset-ray {
        display: none;
    }
}


.sunset-main-content ::selection {
    background: var(--sunset-accent);
    color: #fff;
}

.sunset-main-content ::-moz-selection {
    background: var(--sunset-accent);
    color: #fff;
}


.sunset-main-content * {
    box-sizing: border-box;
}


.sunset-article-card,
.sunset-sidebar-card,
.sunset-site-link,
.sunset-category-tag,
.sunset-read-more,
.sunset-stat-box,
.sunset-tab-item {
    will-change: transform;
    backface-visibility: hidden;
}


@media print {
    .sunset-main-content {
        background: #fff !important;
        color: #000 !important;
    }

    .sunset-banner-content {
        background: #f0f0f0 !important;
        color: #000 !important;
        border: 2px solid #000;
    }

    .sunset-sidebar,
    .sunset-banner-decoration,
    .sunset-section-tabs {
        display: none !important;
    }

    .sunset-content-layout {
        grid-template-columns: 1fr !important;
    }

    .sunset-article-card {
        break-inside: avoid;
        border: 1px solid #000 !important;
    }
}


.sunset-loading {
    opacity: 0.6;
    pointer-events: none;
}

.sunset-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--sunset-border);
    border-top-color: var(--sunset-primary);
    border-radius: 50%;
    animation: sunsetSpin 1s linear infinite;
}

@keyframes sunsetSpin {
    to {
        transform: rotate(360deg);
    }
}


.sunset-main-content::-webkit-scrollbar {
    width: 8px;
}

.sunset-main-content::-webkit-scrollbar-track {
    background: var(--sunset-bg-light);
}

.sunset-main-content::-webkit-scrollbar-thumb {
    background: var(--sunset-primary);
    border-radius: 4px;
}

.sunset-main-content::-webkit-scrollbar-thumb:hover {
    background: var(--sunset-secondary);
}