.aurora-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.12) 0%, 
        rgba(30, 144, 255, 0.15) 25%,
        rgba(255, 20, 147, 0.08) 50%,
        rgba(0, 191, 255, 0.12) 75%,
        rgba(147, 112, 219, 0.10) 100%);
    overflow: hidden;
    animation: auroraShift 25s ease-in-out infinite;
}

@keyframes auroraShift {
    0%, 100% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
}

.aurora-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.aurora-shape {
    position: absolute;
    opacity: 0.08;
    animation: auroraFloat 18s ease-in-out infinite;
}

.aurora-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff1493, #1e90ff);
    border-radius: 50%;
    top: 20%;
    left: 10%;
}

.aurora-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #9370db;
    top: 70%;
    right: 15%;
    animation-delay: 4s;
}

.aurora-square {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #00bfff, #8a2be2);
    transform: rotate(45deg);
    top: 40%;
    left: 80%;
    animation-delay: 8s;
}

.aurora-hexagon {
    width: 80px;
    height: 46.19px;
    background: #ff69b4;
    position: relative;
    top: 80%;
    left: 30%;
    animation-delay: 12s;
}

.aurora-hexagon:before,
.aurora-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.aurora-hexagon:before {
    bottom: 100%;
    border-bottom: 23.09px solid #ff69b4;
}

.aurora-hexagon:after {
    top: 100%;
    border-top: 23.09px solid #ff69b4;
}

@keyframes auroraFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-60px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.aurora-main-content {
    padding: 20px 0;
    min-height: 100vh;
    position: relative;
}

.aurora-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.aurora-content-primary {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.aurora-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    align-self: start;
}

.aurora-page-content {
    padding: 0;
}

.aurora-article-wrapper {
    padding: 0;
}

.aurora-page-header {
    padding: 50px 40px;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%, 
        rgba(30, 144, 255, 0.8) 50%,
        rgba(255, 20, 147, 0.9) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aurora-header-decoration {
    position: absolute;
    top: -60%;
    right: -25%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: auroraPulse 6s ease-in-out infinite;
}

@keyframes auroraPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.4) rotate(180deg); opacity: 0.1; }
}

.aurora-header-content {
    position: relative;
    z-index: 2;
}

.aurora-page-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.aurora-page-title i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.aurora-page-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.aurora-tab-nav {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.aurora-tab-item {
    background: transparent !important;
    border: none !important;
    position: relative;
}

.aurora-tab-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.aurora-tab-item:hover .aurora-tab-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
}

.aurora-tab-item.layui-this .aurora-tab-link {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.aurora-article-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.aurora-article-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aurora-article-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
}

.aurora-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.15);
}

.aurora-article-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    position: relative;
}

.aurora-article-item:hover .aurora-article-card {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
}

.aurora-article-item:last-child .aurora-article-card {
    margin-bottom: 0;
}

.aurora-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.aurora-article-title {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
    flex: 1;
    margin-right: 15px;
    display: block;
    position: relative;
}

.aurora-article-title:hover {
    color: #8a2be2;
}

.aurora-article-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #ff1493);
    transition: width 0.3s ease;
}

.aurora-article-title:hover::after {
    width: 100%;
}

.aurora-badge-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: flex-start;
}

.aurora-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.aurora-badge-top {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.aurora-badge-new {
    background: linear-gradient(135deg, #ff1493, #27ae60);
}

.aurora-badge-hot {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.aurora-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #7f8c8d;
    font-size: 14px;
    flex-wrap: wrap;
}

.aurora-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.aurora-meta-item:hover {
    color: #8a2be2;
}

.aurora-meta-item i {
    color: #8a2be2;
    font-size: 15px;
}

.aurora-empty-container {
    text-align: center;
    padding: 100px 20px;
    color: #95a5a6;
}

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

.aurora-empty-icon i {
    font-size: 70px;
    opacity: 0.4;
    color: #8a2be2;
}

.aurora-empty-text {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.aurora-sidebar-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.aurora-sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.2);
}

.aurora-sidebar-card .aurora-card-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%, 
        rgba(30, 144, 255, 0.8) 100%);
    color: #fff;
}

.aurora-card-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aurora-card-title i {
    font-size: 19px;
}

.aurora-card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.aurora-profile-info {
    text-align: center;
    margin-bottom: 28px;
}

.aurora-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}

.aurora-avatar {
    position: relative;
    z-index: 2;
}

.aurora-avatar img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 4px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.aurora-avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: auroraGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes auroraGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.3; }
}

.aurora-avatar:hover img {
    transform: scale(1.08);
    border-color: rgba(138, 43, 226, 0.4);
}

.aurora-profile-name {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.aurora-bio {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.aurora-profile-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(138, 43, 226, 0.15);
    padding-top: 22px;
    gap: 12px;
}

.aurora-stat-item {
    text-align: center;
    flex: 1;
}

.aurora-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.aurora-stat-label {
    font-size: 13px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.aurora-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aurora-tag-item {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.aurora-tag-item:hover {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.aurora-site-list {
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;

}

.aurora-site-list::-webkit-scrollbar {
    width: 6px;
}

.aurora-site-list::-webkit-scrollbar-track {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 3px;
}

.aurora-site-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a2be2, #ff1493);
    border-radius: 3px;
}

.aurora-site-item {
    margin-bottom: 16px;
}

.aurora-site-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.aurora-site-info {
    padding: 16px;
    background: rgba(138, 43, 226, 0.04);
    border-radius: 12px;
    border-left: 3px solid #8a2be2;
    transition: all 0.3s ease;
}

.aurora-site-link:hover .aurora-site-info {
    background: rgba(138, 43, 226, 0.08);
    border-left-width: 5px;
    transform: translateX(6px);
}

.aurora-site-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.5;
}

.aurora-site-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #95a5a6;
    font-size: 13px;
}

.aurora-more-sites {
    text-align: center;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(138, 43, 226, 0.15);
}

.aurora-more-link {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: 25px;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.15);
}

.aurora-more-link:hover {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.25);
}

.aurora-empty-sites {
    text-align: center;
    padding: 45px 0;
    color: #95a5a6;
}

.aurora-empty-sites i {
    font-size: 45px;
    margin-bottom: 12px;
    opacity: 0.4;
    color: #8a2be2;
}

@media (max-width: 1024px) {
    .aurora-content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .aurora-main-content {
        padding: 10px 0;
    }

    .aurora-content-layout {
        gap: 15px;
        padding: 0 15px;
    }

    .aurora-page-header {
        padding: 30px 22px;
    }

    .aurora-page-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }

    .aurora-article-content {
        padding: 22px;
    }

    .aurora-article-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .aurora-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .aurora-article-title {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 17px;
    }

    .aurora-badge-group {
        align-self: flex-start;
    }

    .aurora-article-meta {
        gap: 14px;
        flex-wrap: wrap;
    }

    .aurora-card-content {
        padding: 22px;
    }

    .aurora-profile-stats {
        gap: 10px;
    }

    .aurora-stat-number {
        font-size: 22px;
    }

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

@media (max-width: 480px) {
    .aurora-content-layout {
        padding: 0 10px;
    }

    .aurora-page-header {
        padding: 25px 18px;
    }

    .aurora-page-title {
        font-size: 24px;
    }

    .aurora-article-content {
        padding: 18px;
    }

    .aurora-article-card {
        padding: 15px;
        margin-bottom: 12px;
    }

    .aurora-card-content {
        padding: 18px;
    }

    .aurora-avatar img {
        width: 65px;
        height: 65px;
    }

    .aurora-avatar-glow {
        width: 85px;
        height: 85px;
    }

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

    .aurora-tag-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .aurora-site-info {
        padding: 14px;
    }

    .aurora-site-title {
        font-size: 15px;
    }

    .aurora-article-title {
        font-size: 16px;
    }

    .aurora-article-meta {
        font-size: 13px;
        gap: 12px;
    }
}

.aurora-article-title:focus,
.aurora-tag-item:focus,
.aurora-site-link:focus,
.aurora-more-link:focus {
    outline: 2px solid #8a2be2;
    outline-offset: 2px;
    border-radius: 4px;
}

.aurora-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: #8a2be2;
}

.aurora-loading::after {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid rgba(138, 43, 226, 0.2);
    border-top: 3px solid #8a2be2;
    border-radius: 50%;
    animation: auroraSpin 1s linear infinite;
}

@keyframes auroraSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.layui-tab-title li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    transition: all .2s;
    -webkit-transition: all .2s;
    position: relative;
    line-height: unset;
    min-width: 65px;
    padding: 0 15px;
    text-align: center;
    cursor: pointer;
}
.aurora-article-actions {
    margin-top: 15px;
    text-align: right;
}

.aurora-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.aurora-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    color: #fff;
    text-decoration: none;
}

.aurora-read-more-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .aurora-article-actions {
        text-align: center;
        margin-top: 12px;
    }

    .aurora-read-more-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .aurora-read-more-btn {
        padding: 7px 0px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}
