:root {
    --aurora-primary: #00d4aa;
    --aurora-secondary: #667eea;
    --aurora-accent: #764ba2;
    --aurora-bg: #ffffff;
    --aurora-bg-light: #f8fafc;
    --aurora-text: #2d3748;
    --aurora-text-light: #718096;
    --aurora-text-lighter: #a0aec0;
    --aurora-border: #e2e8f0;
    --aurora-shadow: rgba(0, 212, 170, 0.1);
    --aurora-shadow-dark: rgba(0, 212, 170, 0.2);
    --aurora-glow: rgba(0, 212, 170, 0.3);
    --aurora-light: rgba(0, 212, 170, 0.05);
    --aurora-gradient-1: linear-gradient(135deg, var(--aurora-primary) 0%, var(--aurora-secondary) 100%);
    --aurora-gradient-2: linear-gradient(135deg, var(--aurora-secondary) 0%, var(--aurora-accent) 100%);
    --aurora-gradient-3: linear-gradient(135deg, var(--aurora-accent) 0%, var(--aurora-primary) 100%);
}


.aurora-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.aurora-site-light {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(80px);
    animation-duration: 25s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.aurora-site-light-1 {
    background: var(--aurora-primary);
    top: -250px;
    left: -250px;
    animation-name: auroraSiteFloat1;
}

.aurora-site-light-2 {
    background: var(--aurora-secondary);
    top: -200px;
    right: -250px;
    animation-name: auroraSiteFloat2;
    animation-delay: -8s;
}

.aurora-site-light-3 {
    background: var(--aurora-accent);
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    animation-name: auroraSiteFloat3;
    animation-delay: -15s;
}

@keyframes auroraSiteFloat1 {

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

    33% {
        transform: translate(120px, 80px) scale(1.3) rotate(120deg);
        opacity: 0.1;
    }

    66% {
        transform: translate(-80px, 120px) scale(0.8) rotate(240deg);
        opacity: 0.04;
    }
}

@keyframes auroraSiteFloat2 {

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

    33% {
        transform: translate(-100px, 100px) scale(1.2) rotate(-120deg);
        opacity: 0.08;
    }

    66% {
        transform: translate(80px, -80px) scale(1.4) rotate(-240deg);
        opacity: 0.1;
    }
}

@keyframes auroraSiteFloat3 {

    0%,
    100% {
        transform: translateX(-50%) translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.06;
    }

    33% {
        transform: translateX(-50%) translate(100px, -100px) scale(0.9) rotate(90deg);
        opacity: 0.04;
    }

    66% {
        transform: translateX(-50%) translate(-100px, -60px) scale(1.5) rotate(180deg);
        opacity: 0.12;
    }
}


.aurora-site-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.aurora-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--aurora-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: auroraParticleFloat 20s linear infinite;
}

.aurora-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.aurora-particle:nth-child(2) {
    left: 30%;
    animation-delay: -5s;
    animation-duration: 22s;
    background: var(--aurora-secondary);
}

.aurora-particle:nth-child(3) {
    left: 50%;
    animation-delay: -10s;
    animation-duration: 20s;
    background: var(--aurora-accent);
}

.aurora-particle:nth-child(4) {
    left: 70%;
    animation-delay: -15s;
    animation-duration: 24s;
}

.aurora-particle:nth-child(5) {
    left: 90%;
    animation-delay: -20s;
    animation-duration: 19s;
    background: var(--aurora-secondary);
}

@keyframes auroraParticleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 0.3;
        transform: translateY(10vh) scale(1);
    }

    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}


.aurora-site-main {
    padding: 30px 0;
    background: var(--aurora-bg-light);
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.aurora-site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}


.aurora-site-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--aurora-text-light);
}

.aurora-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--aurora-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.aurora-breadcrumb-item:hover {
    color: var(--aurora-primary);
}

.aurora-breadcrumb-separator {
    color: var(--aurora-text-lighter);
    font-size: 12px;
}

.aurora-breadcrumb-current {
    color: var(--aurora-primary);
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.aurora-site-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.aurora-site-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.aurora-site-hero-card {
    background: var(--aurora-bg);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--aurora-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.aurora-site-hero-card:hover {
    box-shadow: 0 15px 50px var(--aurora-shadow-dark);
    transform: translateY(-2px);
}

.aurora-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--aurora-gradient-1);
    overflow: hidden;
}

.aurora-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: auroraPatternMove 20s ease-in-out infinite;
}

@keyframes auroraPatternMove {

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

    50% {
        transform: translate(20px, 10px) scale(1.1);
    }
}

.aurora-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.aurora-site-avatar {
    position: relative;
    flex-shrink: 0;
}

.aurora-avatar-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.aurora-avatar-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.aurora-avatar-wrapper i {
    font-size: 48px;
    color: var(--aurora-primary);
}

.aurora-avatar-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--aurora-gradient-1);
    border-radius: 23px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.aurora-site-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #52c41a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(82, 196, 26, 0.3);
}

.aurora-status-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: auroraStatusPulse 2s ease-in-out infinite;
}

@keyframes auroraStatusPulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.aurora-site-info {
    flex: 1;
    min-width: 0;
    color: #fff;
}

.aurora-site-title {
    margin-bottom: 15px;
    position: relative;
}

.aurora-title-text {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.aurora-title-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.aurora-decoration-line {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.aurora-decoration-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: auroraDotPulse 2s ease-in-out infinite;
}

@keyframes auroraDotPulse {

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

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

.aurora-site-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.aurora-site-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.aurora-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.aurora-meta-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s ease;
}

.aurora-meta-item:hover .aurora-meta-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.aurora-site-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aurora-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aurora-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.aurora-tag:hover::before {
    left: 100%;
}

.aurora-tag-category {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.aurora-tag-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
}

.aurora-tag-trending {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: #fff;
}

.aurora-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aurora-hero-actions {
    padding: 30px 40px;
    background: var(--aurora-bg);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid var(--aurora-border);
}

.aurora-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.aurora-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.aurora-action-btn:hover::before {
    left: 100%;
}

.aurora-btn-primary {
    background: var(--aurora-gradient-1);
    color: #fff;
    border: 2px solid transparent;
}

.aurora-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-btn-secondary {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: #fff;
    border: 2px solid transparent;
}

.aurora-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(82, 196, 26, 0.3);
}

.aurora-btn-outline {
    background: var(--aurora-bg);
    color: var(--aurora-primary);
    border: 2px solid var(--aurora-primary);
}

.aurora-btn-outline:hover {
    background: var(--aurora-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

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

.aurora-action-btn:hover .aurora-btn-icon {
    transform: scale(1.2);
}

.aurora-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.aurora-btn-text {
    font-size: 14px;
    line-height: 1;
}

.aurora-btn-subtitle {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
}

.aurora-btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aurora-glow);
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.aurora-action-btn:hover .aurora-btn-glow {
    opacity: 0.3;
}


.aurora-stats-card,
.aurora-details-card,
.aurora-features-card,
.aurora-sidebar-card {
    background: var(--aurora-bg);
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--aurora-shadow);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.aurora-stats-card:hover,
.aurora-details-card:hover,
.aurora-features-card:hover,
.aurora-sidebar-card:hover {
    box-shadow: 0 12px 40px var(--aurora-shadow-dark);
    transform: translateY(-3px);
}

.aurora-card-header {
    padding: 25px 30px;
    background: var(--aurora-gradient-1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.aurora-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: auroraCardGlow 15s ease-in-out infinite;
}

@keyframes auroraCardGlow {

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

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

.aurora-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.aurora-title-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aurora-title-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.aurora-title-icon i {
    font-size: 20px;
    color: #fff;
}

.aurora-title-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.aurora-card-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.aurora-decoration-dots {
    display: flex;
    gap: 6px;
}

.aurora-decoration-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: auroraDotPulse 2s ease-in-out infinite;
}

.aurora-decoration-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.aurora-decoration-dots span:nth-child(3) {
    animation-delay: 1s;
}


.aurora-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    padding: 30px;
}

.aurora-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-right: 1px solid var(--aurora-border);
    border-bottom: 1px solid var(--aurora-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.aurora-stat-item.aurora-animate {
    opacity: 1;
    transform: translateY(0);
}

.aurora-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-light), transparent);
    transition: left 0.5s ease;
}

.aurora-stat-item:hover::before {
    left: 100%;
}

.aurora-stat-item:hover {
    background: var(--aurora-light);
    border-color: var(--aurora-primary);
}

.aurora-stat-item:nth-child(2n) {
    border-right: none;
}

.aurora-stat-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.aurora-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aurora-stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.aurora-stat-item:hover .aurora-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-stat-icon i {
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.aurora-stat-today {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.aurora-stat-month {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.aurora-stat-total {
    background: linear-gradient(135deg, #00d4aa, #52c41a);
}

.aurora-stat-rating {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.aurora-stat-content {
    flex: 1;
    min-width: 0;
}

.aurora-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--aurora-text);
    line-height: 1.2;
    margin-bottom: 5px;
}

.aurora-stat-label {
    font-size: 14px;
    color: var(--aurora-text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.aurora-stat-trend {
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #52c41a;
    font-weight: 600;
}

.aurora-stat-trend i {
    font-size: 14px;
}

.aurora-stat-rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.aurora-star {
    color: var(--aurora-border);
    font-size: 16px;
    transition: color 0.3s ease;
}

.aurora-star-active {
    color: #feca57;
}

.aurora-stat-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aurora-glow);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.aurora-stat-item:hover .aurora-stat-glow {
    opacity: 0.2;
}


.aurora-details-grid {
    padding: 30px;
}

.aurora-detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    border-bottom: 1px solid var(--aurora-border);
}

.aurora-detail-row:last-child {
    border-bottom: none;
}

.aurora-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-right: 1px solid var(--aurora-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aurora-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-light), transparent);
    transition: left 0.5s ease;
}

.aurora-detail-item:hover::before {
    left: 100%;
}

.aurora-detail-item:hover {
    background: var(--aurora-light);
}

.aurora-detail-item:nth-child(2n) {
    border-right: none;
}

.aurora-detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--aurora-text-light);
    font-weight: 500;
}

.aurora-detail-label i {
    font-size: 16px;
    color: var(--aurora-primary);
}

.aurora-detail-value {
    font-size: 14px;
    color: var(--aurora-text);
    font-weight: 600;
    text-align: right;
}

.aurora-category-link,
.aurora-domain-link {
    color: var(--aurora-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.aurora-category-link:hover,
.aurora-domain-link:hover {
    color: var(--aurora-secondary);
}


.aurora-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 30px;
}

.aurora-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.aurora-feature-item.aurora-animate {
    opacity: 1;
    transform: translateY(0);
}

.aurora-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-glow), transparent);
    transition: left 0.5s ease;
}

.aurora-feature-item:hover::before {
    left: 100%;
}

.aurora-feature-item:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--aurora-shadow-dark);
}

.aurora-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--aurora-gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.aurora-feature-item:hover .aurora-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-feature-icon i {
    font-size: 24px;
}

.aurora-feature-content {
    flex: 1;
    min-width: 0;
}

.aurora-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--aurora-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.aurora-feature-desc {
    font-size: 14px;
    color: var(--aurora-text-light);
    line-height: 1.6;
    margin: 0;
}

.aurora-feature-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aurora-glow);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.aurora-feature-item:hover .aurora-feature-glow {
    opacity: 0.2;
}


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

.aurora-sidebar-card {
    opacity: 0;
    transform: translateY(20px);
}

.aurora-sidebar-card.aurora-animate {
    opacity: 1;
    transform: translateY(0);
}

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


.aurora-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.aurora-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--aurora-text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aurora-tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-light), transparent);
    transition: left 0.5s ease;
}

.aurora-tool-item:hover::before {
    left: 100%;
}

.aurora-tool-item:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--aurora-shadow);
}

.aurora-tool-icon {
    width: 40px;
    height: 40px;
    background: var(--aurora-gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.aurora-tool-item:hover .aurora-tool-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--aurora-shadow-dark);
}

.aurora-tool-icon i {
    font-size: 18px;
}

.aurora-tool-text {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}


.aurora-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.aurora-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 35px;
    padding: 15px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
}

.aurora-related-item.aurora-animate {
    opacity: 1;
    transform: translateY(0);
}

.aurora-related-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-glow), transparent);
    transition: left 0.5s ease;
}

.aurora-related-item:hover::before {
    left: 100%;
}

.aurora-related-item:hover {
    border-color: var(--aurora-primary);
    transform: translateX(3px);
    box-shadow: 0 6px 20px var(--aurora-shadow);
}

.aurora-related-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.aurora-related-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aurora-related-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aurora-gradient-1);
    color: #fff;
    font-size: 18px;
}

.aurora-related-content {
    flex: 1;
    min-width: 0;
}

.aurora-related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--aurora-text);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.aurora-related-item:hover .aurora-related-title {
    color: var(--aurora-primary);
}

.aurora-related-desc {
    font-size: 12px;
    color: var(--aurora-text-light);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aurora-related-arrow {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aurora-text-lighter);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aurora-related-item:hover .aurora-related-arrow {
    color: var(--aurora-primary);
    transform: translateX(3px);
}

.aurora-related-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--aurora-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.aurora-empty-icon {
    width: 60px;
    height: 60px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--aurora-primary);
    margin-bottom: 10px;
}

.aurora-empty-text {
    font-size: 14px;
    font-weight: 500;
}


.aurora-summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.aurora-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.aurora-summary-item:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--aurora-shadow);
}

.aurora-summary-icon {
    width: 35px;
    height: 35px;
    background: var(--aurora-gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.aurora-summary-item:hover .aurora-summary-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--aurora-shadow-dark);
}

.aurora-summary-content {
    flex: 1;
    min-width: 0;
}

.aurora-summary-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--aurora-text);
    line-height: 1.2;
    margin-bottom: 3px;
}

.aurora-summary-label {
    font-size: 11px;
    color: var(--aurora-text-light);
    font-weight: 500;
    line-height: 1.2;
}


.aurora-hot-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 350px;
    overflow-y: auto;
}

.aurora-hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
}

.aurora-hot-item.aurora-animate {
    opacity: 1;
    transform: translateY(0);
}

.aurora-hot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-glow), transparent);
    transition: left 0.5s ease;
}

.aurora-hot-item:hover::before {
    left: 100%;
}

.aurora-hot-item:hover {
    border-color: var(--aurora-primary);
    transform: translateX(3px);
    box-shadow: 0 4px 15px var(--aurora-shadow);
}

.aurora-hot-rank {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aurora-rank-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--aurora-primary);
    background: var(--aurora-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aurora-hot-item:nth-child(1) .aurora-rank-number {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #fff;
}

.aurora-hot-item:nth-child(2) .aurora-rank-number {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: #fff;
}

.aurora-hot-item:nth-child(3) .aurora-rank-number {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: #fff;
}

.aurora-hot-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.aurora-hot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aurora-hot-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aurora-gradient-1);
    color: #fff;
    font-size: 14px;
}

.aurora-hot-content {
    flex: 1;
    min-width: 0;
}

.aurora-hot-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--aurora-text);
    line-height: 1.3;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.aurora-hot-item:hover .aurora-hot-title {
    color: var(--aurora-primary);
}

.aurora-hot-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aurora-hot-views {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--aurora-text-light);
}

.aurora-hot-views i {
    font-size: 12px;
}

.aurora-hot-trend {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aurora-hot-item:hover .aurora-hot-trend {
    color: var(--aurora-primary);
    transform: scale(1.2);
}

.aurora-hot-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--aurora-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.aurora-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.aurora-share-overlay.aurora-active {
    opacity: 1;
    visibility: visible;
}

.aurora-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--aurora-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
}

.aurora-share-popup.aurora-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.aurora-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: var(--aurora-gradient-1);
    color: #fff;
}

.aurora-share-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.aurora-share-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.aurora-share-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.aurora-share-content {
    padding: 25px;
}

.aurora-share-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--aurora-bg-light);
    border-radius: 12px;
    margin-bottom: 25px;
}

.aurora-preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.aurora-preview-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aurora-preview-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aurora-gradient-1);
    color: #fff;
    font-size: 24px;
}

.aurora-preview-info {
    flex: 1;
    min-width: 0;
}

.aurora-preview-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--aurora-text);
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aurora-preview-desc {
    font-size: 14px;
    color: var(--aurora-text-light);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aurora-share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.aurora-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--aurora-bg-light);
    border: 2px solid var(--aurora-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--aurora-text);
}

.aurora-share-btn:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--aurora-shadow);
}

.aurora-share-btn-icon {
    width: 40px;
    height: 40px;
    background: var(--aurora-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.aurora-share-btn:hover .aurora-share-btn-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--aurora-shadow-dark);
}

.aurora-share-btn span {
    font-size: 12px;
    font-weight: 500;
}

.aurora-share-url-section {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 15px;
    background: var(--aurora-bg-light);
    border-radius: 10px;
    border: 2px solid var(--aurora-border);
}

.aurora-share-url {
    flex: 1;
    font-size: 13px;
    color: var(--aurora-text-light);
    word-break: break-all;
    line-height: 1.4;
}

.aurora-share-copy {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--aurora-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aurora-share-copy:hover {
    background: var(--aurora-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--aurora-shadow-dark);
}


.aurora-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--aurora-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.aurora-back-to-top.aurora-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aurora-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px var(--aurora-shadow-dark);
}


.aurora-heart-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff6b6b;
    font-size: 24px;
    pointer-events: none;
    animation: auroraHeartFloat 1s ease-out forwards;
}

@keyframes auroraHeartFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(1.5);
    }
}


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

    .aurora-site-layout {
        grid-template-columns: 1fr 300px;
        gap: 25px;
    }

    .aurora-hero-content {
        padding: 30px;
        gap: 25px;
    }

    .aurora-title-text {
        font-size: 28px;
    }

    .aurora-hero-actions {
        padding: 25px 30px;
    }

    .aurora-stats-grid,
    .aurora-details-grid,
    .aurora-features-grid {
        padding: 25px;
    }

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

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

    .aurora-summary-stats {
        grid-template-columns: 1fr;
    }
}

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

    .aurora-site-container {
        padding: 0 15px;
    }

    .aurora-site-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aurora-site-sidebar {
        order: 1;
    }

    .aurora-breadcrumb-current {
        max-width: 150px;
    }

    .aurora-hero-content {
        padding: 25px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

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

    .aurora-site-meta {
        justify-content: center;
        gap: 20px;
    }

    .aurora-hero-actions {
        padding: 20px;
        justify-content: center;
    }

    .aurora-action-btn {
        min-width: 120px;
        padding: 12px 20px;
    }

    .aurora-stats-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .aurora-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--aurora-border);
    }

    .aurora-stat-item:last-child {
        border-bottom: none;
    }

    .aurora-details-grid {
        padding: 20px;
    }

    .aurora-detail-row {
        grid-template-columns: 1fr;
    }

    .aurora-detail-item {
        border-right: none;
        border-bottom: 1px solid var(--aurora-border);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .aurora-detail-item:last-child {
        border-bottom: none;
    }

    .aurora-detail-value {
        text-align: left;
    }

    .aurora-features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

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

    .aurora-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-share-url-section {
        flex-direction: column;
        align-items: stretch;
    }

    .aurora-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .aurora-site-main {
        padding: 15px 0;
    }

    .aurora-site-container {
        padding: 0 12px;
    }

    .aurora-site-breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .aurora-breadcrumb-current {
        max-width: 100px;
    }

    .aurora-hero-content {
        padding: 20px 15px;
    }

    .aurora-title-text {
        font-size: 20px;
    }

    .aurora-site-meta {
        gap: 15px;
    }

    .aurora-meta-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .aurora-hero-actions {
        padding: 15px;
        gap: 10px;
    }

    .aurora-action-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 12px;
    }

    .aurora-btn-icon {
        font-size: 14px;
    }

    .aurora-btn-text {
        font-size: 12px;
    }

    .aurora-btn-subtitle {
        font-size: 10px;
    }

    .aurora-stats-grid,
    .aurora-details-grid,
    .aurora-features-grid {
        padding: 15px;
    }

    .aurora-stat-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .aurora-stat-icon {
        width: 50px;
        height: 50px;
    }

    .aurora-stat-icon i {
        font-size: 24px;
    }

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

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

    .aurora-detail-item {
        padding: 15px;
    }

    .aurora-feature-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .aurora-feature-icon {
        width: 50px;
        height: 50px;
    }

    .aurora-feature-icon i {
        font-size: 20px;
    }

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

    .aurora-feature-desc {
        font-size: 13px;
    }

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

    .aurora-title-icon {
        width: 35px;
        height: 35px;
    }

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

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

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

    .aurora-tool-item {
        padding: 15px 10px;
    }

    .aurora-tool-icon {
        width: 35px;
        height: 35px;
    }

    .aurora-tool-icon i {
        font-size: 16px;
    }

    .aurora-tool-text {
        font-size: 11px;
    }

    .aurora-related-item,
    .aurora-hot-item {
        padding: 12px;
        gap: 10px;
    }

    .aurora-related-icon,
    .aurora-hot-icon {
        width: 35px;
        height: 35px;
    }

    .aurora-related-icon i,
    .aurora-hot-icon i {
        font-size: 16px;
    }

    .aurora-related-title,
    .aurora-hot-title {
        font-size: 12px;
    }

    .aurora-related-desc {
        font-size: 11px;
    }

    .aurora-summary-item {
        padding: 12px;
        gap: 10px;
    }

    .aurora-summary-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .aurora-summary-number {
        font-size: 14px;
    }

    .aurora-summary-label {
        font-size: 10px;
    }

    .aurora-share-header {
        padding: 20px 15px;
    }

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

    .aurora-share-close {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .aurora-share-content {
        padding: 15px;
    }

    .aurora-share-preview {
        padding: 15px;
        margin-bottom: 20px;
        gap: 12px;
    }

    .aurora-preview-icon {
        width: 50px;
        height: 50px;
    }

    .aurora-preview-icon i {
        font-size: 20px;
    }

    .aurora-preview-title {
        font-size: 14px;
    }

    .aurora-preview-desc {
        font-size: 12px;
    }

    .aurora-share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .aurora-share-btn {
        padding: 12px 8px;
        gap: 6px;
    }

    .aurora-share-btn-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .aurora-share-btn span {
        font-size: 11px;
    }

    .aurora-share-url-section {
        padding: 12px;
        gap: 10px;
    }

    .aurora-share-url {
        font-size: 12px;
    }

    .aurora-share-copy {
        padding: 6px 12px;
        font-size: 11px;
    }

    .aurora-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


@media (max-width: 360px) {
    .aurora-site-container {
        padding: 0 10px;
    }

    .aurora-hero-content {
        padding: 15px 10px;
    }

    .aurora-title-text {
        font-size: 18px;
    }

    .aurora-site-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .aurora-hero-actions {
        padding: 12px;
        flex-direction: column;
    }

    .aurora-action-btn {
        width: 100%;
        min-width: auto;
    }

    .aurora-stats-grid,
    .aurora-details-grid,
    .aurora-features-grid {
        padding: 12px;
    }

    .aurora-card-header {
        padding: 15px 10px;
    }

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

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

    .aurora-summary-stats {
        grid-template-columns: 1fr;
    }

    .aurora-share-buttons {
        grid-template-columns: 1fr;
    }
}


.aurora-page-loaded {
    animation: auroraPageFadeIn 0.8s ease-out;
}

@keyframes auroraPageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.aurora-btn-secondary.aurora-liked {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    animation: auroraLikeSuccess 0.6s ease-out;
}

@keyframes auroraLikeSuccess {
    0% {
        transform: translateY(-3px) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.1);
    }

    100% {
        transform: translateY(-3px) scale(1);
    }
}


.aurora-action-btn.aurora-loading {
    pointer-events: none;
    opacity: 0.7;
}

.aurora-action-btn.aurora-loading .aurora-btn-icon {
    animation: auroraLoadingSpin 1s linear infinite;
}

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

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


.aurora-related-list::-webkit-scrollbar,
.aurora-hot-list::-webkit-scrollbar {
    width: 6px;
}

.aurora-related-list::-webkit-scrollbar-track,
.aurora-hot-list::-webkit-scrollbar-track {
    background: var(--aurora-bg-light);
    border-radius: 3px;
}

.aurora-related-list::-webkit-scrollbar-thumb,
.aurora-hot-list::-webkit-scrollbar-thumb {
    background: var(--aurora-border);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.aurora-related-list::-webkit-scrollbar-thumb:hover,
.aurora-hot-list::-webkit-scrollbar-thumb:hover {
    background: var(--aurora-primary);
}


::selection {
    background: var(--aurora-glow);
    color: var(--aurora-text);
}

::-moz-selection {
    background: var(--aurora-glow);
    color: var(--aurora-text);
}


.aurora-action-btn:focus,
.aurora-tool-item:focus,
.aurora-related-item:focus,
.aurora-hot-item:focus,
.aurora-share-btn:focus,
.aurora-share-copy:focus {
    outline: 2px solid var(--aurora-primary);
    outline-offset: 2px;
}


.aurora-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


@media print {

    .aurora-site-bg,
    .aurora-hero-actions,
    .aurora-site-sidebar,
    .aurora-share-overlay,
    .aurora-share-popup,
    .aurora-back-to-top {
        display: none !important;
    }

    .aurora-site-layout {
        grid-template-columns: 1fr;
    }

    .aurora-site-hero-card,
    .aurora-stats-card,
    .aurora-details-card,
    .aurora-features-card {
        box-shadow: none;
        border: 1px solid var(--aurora-border);
    }

    .aurora-hero-background {
        background: var(--aurora-bg-light) !important;
    }

    .aurora-site-info {
        color: var(--aurora-text) !important;
    }

    .aurora-title-text {
        color: var(--aurora-text) !important;
        text-shadow: none !important;
    }

    .aurora-site-description {
        color: var(--aurora-text-light) !important;
        text-shadow: none !important;
    }

    .aurora-meta-item {
        color: var(--aurora-text-light) !important;
    }
}


@media (prefers-contrast: high) {
    :root {
        --aurora-border: #000000;
        --aurora-text-light: #333333;
        --aurora-text-lighter: #666666;
        --aurora-shadow: rgba(0, 0, 0, 0.3);
        --aurora-shadow-dark: rgba(0, 0, 0, 0.5);
    }

    .aurora-site-hero-card,
    .aurora-stats-card,
    .aurora-details-card,
    .aurora-features-card,
    .aurora-sidebar-card {
        border: 2px solid var(--aurora-border);
    }
}


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

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

    .aurora-site-light,
    .aurora-particle,
    .aurora-hero-pattern {
        animation: none !important;
    }
}


@media (prefers-color-scheme: dark) {
    :root {
        --aurora-bg: #1a202c;
        --aurora-bg-light: #2d3748;
        --aurora-text: #f7fafc;
        --aurora-text-light: #cbd5e0;
        --aurora-text-lighter: #a0aec0;
        --aurora-border: #4a5568;
        --aurora-shadow: rgba(0, 212, 170, 0.2);
        --aurora-shadow-dark: rgba(0, 212, 170, 0.3);
        --aurora-light: rgba(0, 212, 170, 0.1);
    }

    .aurora-site-bg {
        background: #0f1419;
    }

    .aurora-avatar-wrapper {
        background: rgba(45, 55, 72, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .aurora-tool-item,
    .aurora-related-item,
    .aurora-hot-item,
    .aurora-summary-item,
    .aurora-feature-item {
        background: #2d3748;
        border-color: #4a5568;
    }

    .aurora-share-preview,
    .aurora-share-url-section {
        background: #2d3748;
        border-color: #4a5568;
    }

    .aurora-empty-icon {
        background: #2d3748;
        border-color: #4a5568;
    }
}


@media (hover: none) and (pointer: coarse) {

    .aurora-action-btn,
    .aurora-tool-item,
    .aurora-related-item,
    .aurora-hot-item,
    .aurora-share-btn {
        min-height: 44px;
    }

    .aurora-back-to-top {
        width: 55px;
        height: 55px;
    }

    .aurora-share-close {
        width: 44px;
        height: 44px;
    }
}


@media (orientation: landscape) and (max-height: 500px) {
    .aurora-site-main {
        padding: 15px 0;
    }

    .aurora-hero-content {
        padding: 20px;
    }

    .aurora-share-popup {
        max-height: 85vh;
        overflow-y: auto;
    }
}


.aurora-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.aurora-action-btn:focus-visible,
.aurora-tool-item:focus-visible,
.aurora-related-item:focus-visible,
.aurora-hot-item:focus-visible,
.aurora-share-btn:focus-visible {
    outline: 2px solid var(--aurora-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--aurora-glow);
}


.aurora-error {
    color: #e53e3e;
    border-color: #e53e3e;
}

.aurora-error .aurora-btn-icon {
    color: #e53e3e;
}


.aurora-success {
    color: #38a169;
    border-color: #38a169;
}

.aurora-success .aurora-btn-icon {
    color: #38a169;
}


.aurora-warning {
    color: #d69e2e;
    border-color: #d69e2e;
}

.aurora-warning .aurora-btn-icon {
    color: #d69e2e;
}


.aurora-info {
    color: #3182ce;
    border-color: #3182ce;
}

.aurora-info .aurora-btn-icon {
    color: #3182ce;
}


.aurora-tooltip {
    position: relative;
}

.aurora-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 5px;
}

.aurora-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}


.aurora-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--aurora-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 1;
}

.aurora-badge-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    border-radius: 50%;
}


.aurora-progress {
    width: 100%;
    height: 4px;
    background: var(--aurora-border);
    border-radius: 2px;
    overflow: hidden;
}

.aurora-progress-bar {
    height: 100%;
    background: var(--aurora-gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}


.aurora-skeleton {
    background: linear-gradient(90deg, var(--aurora-bg-light) 25%, var(--aurora-border) 50%, var(--aurora-bg-light) 75%);
    background-size: 200% 100%;
    animation: auroraSkeleton 1.5s infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.aurora-skeleton-text {
    height: 1em;
    border-radius: 4px;
    margin-bottom: 0.5em;
}

.aurora-skeleton-text:last-child {
    margin-bottom: 0;
    width: 60%;
}

.aurora-skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.aurora-skeleton-button {
    width: 100px;
    height: 36px;
    border-radius: 18px;
}