* {
    box-sizing: border-box;
}

body.crystal-no-scroll {
    overflow: hidden;
}

.crystal-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.08) 0%, 
        rgba(155, 89, 182, 0.08) 25%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(46, 204, 113, 0.06) 75%,
        rgba(231, 76, 60, 0.08) 100%);
    overflow: hidden;
}

.crystal-bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.crystal-shape {
    position: absolute;
    opacity: 0.03;
    animation: float 20s infinite linear;
}

.crystal-shape-1 {
    top: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    animation-delay: 0s;
}

.crystal-shape-2 {
    top: 50%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    transform: rotate(45deg);
    animation-delay: -7s;
}

.crystal-shape-3 {
    bottom: 25%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6, #3498db);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -14s;
}

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

.crystal-site-container {
    min-height: 100vh;
    padding: 20px 0 60px;
}

.crystal-site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.crystal-breadcrumb {
    margin-bottom: 30px;
}

.crystal-breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.crystal-breadcrumb-item {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.crystal-breadcrumb-item:hover {
    color: #3498db;
}

.crystal-breadcrumb-current {
    color: #2c3e50;
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crystal-breadcrumb-separator {
    color: #bdc3c7;
}

.crystal-site-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.crystal-site-main {
    min-width: 0;
}

.crystal-site-header-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.crystal-site-hero {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.crystal-site-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-site-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crystal-site-info {
    flex: 1;
    min-width: 0;
}

.crystal-site-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.crystal-site-title i {
    color: #3498db;
    font-size: 30px;
}

.crystal-site-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.crystal-site-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.crystal-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #95a5a6;
    font-size: 14px;
}

.crystal-meta-item i {
    color: #3498db;
    font-size: 16px;
}

.crystal-site-actions {
    display: flex;
    gap: 15px;
    padding: 30px 40px;
    background: #f8f9fa;
}

.crystal-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.crystal-btn-primary {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
}

.crystal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.crystal-btn-secondary {
    background: #fff;
    color: #7f8c8d;
    border-color: #e9ecef;
}

.crystal-btn-secondary:hover,
.crystal-btn-secondary.crystal-liked {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.crystal-btn-outline {
    background: transparent;
    color: #7f8c8d;
    border-color: #e9ecef;
}

.crystal-btn-outline:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.crystal-stats-section,
.crystal-details-section,
.crystal-benefits-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.crystal-section-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.crystal-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crystal-section-title i {
    color: #3498db;
    font-size: 22px;
}

.crystal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(52, 152, 219, 0.1);
}

.crystal-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

.crystal-stat-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.crystal-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.crystal-stat-content {
    flex: 1;
}

.crystal-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.crystal-stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.crystal-star-rating {
    height: 20px;
    width: auto;
}

.crystal-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(52, 152, 219, 0.1);
}

.crystal-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
}

.crystal-detail-label {
    font-weight: 500;
    color: #7f8c8d;
    font-size: 14px;
}

.crystal-detail-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.crystal-domain-link {
    color: #3498db;
    cursor: pointer;
}

.crystal-domain-link:hover {
    text-decoration: underline;
}

/* 加入好处 */
.crystal-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.crystal-benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.crystal-benefit-item:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.crystal-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.crystal-benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.crystal-benefit-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.crystal-site-sidebar {
    position: relative;
}

.crystal-sidebar-sticky {
    position: sticky;
    top: 100px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crystal-sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.crystal-card-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.crystal-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crystal-card-title i {
    color: #3498db;
    font-size: 18px;
}

.crystal-tools-list {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.crystal-tool-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.crystal-tool-link:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.crystal-tool-link i {
    font-size: 16px;
    color: #3498db;
    transition: color 0.3s ease;
}

.crystal-tool-link:hover i {
    color: #fff;
}

.crystal-related-sites {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.crystal-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.crystal-related-item:hover,
.crystal-related-item.crystal-hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.crystal-related-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.crystal-related-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crystal-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.crystal-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 400px;
    background: #fff;
    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 ease;
}

.crystal-share-overlay.show,
.crystal-share-popup.show {
    opacity: 1;
    visibility: visible;
}

.crystal-share-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.crystal-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.crystal-share-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.crystal-share-close {
    width: 35px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-share-close:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.crystal-share-content {
    padding: 30px;
}

.crystal-share-url-section {
    margin-bottom: 20px;
}

.crystal-share-url {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
    word-break: break-all;
    line-height: 1.4;
}

.crystal-share-copy {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crystal-share-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.lazy-load {
    transition: opacity 0.3s ease;
}

.lazy-load.loading {
    opacity: 0.5;
}

.lazy-load.loaded {
    opacity: 1;
}

.lazy-load.error {
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .crystal-site-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
    
    .crystal-site-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .crystal-site-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .crystal-site-sidebar {
        order: 1;
    }
    
    .crystal-sidebar-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .crystal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crystal-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .crystal-site-container {
        padding: 15px 0 40px;
    }
    
    .crystal-site-wrapper {
        padding: 0 10px;
    }
    
    .crystal-breadcrumb-content {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .crystal-breadcrumb-current {
        max-width: 150px;
    }
    
    .crystal-site-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .crystal-site-icon {
        align-self: center;
    }
    
    .crystal-site-title {
        font-size: 24px;
        justify-content: center;
    }
    
    .crystal-site-meta {
        justify-content: center;
        gap: 15px;
    }
    
    .crystal-site-actions {
        flex-wrap: wrap;
        gap: 10px;
        padding: 25px;
        justify-content: center;
    }
    
    .crystal-action-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .crystal-section-header {
        padding: 20px 25px;
    }
    
    .crystal-section-title {
        font-size: 18px;
    }
    
    .crystal-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .crystal-stat-item {
        padding: 20px;
    }
    
    .crystal-details-grid {
        grid-template-columns: 1fr;
    }
    
    .crystal-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 20px;
    }
    
    .crystal-benefits-grid {
        padding: 20px;
        gap: 15px;
    }
    
    .crystal-benefit-item {
        padding: 15px;
    }
    
    .crystal-sidebar-sticky {
        grid-template-columns: 1fr;
    }
    
    .crystal-share-popup {
        width: 95%;
        margin: 0 auto;
    }
    
    .crystal-share-header {
        padding: 20px 25px;
    }
    
    .crystal-share-content {
        padding: 25px;
    }
    
    .crystal-site-bg {
        display: none;
    }
}

@media (max-width: 480px) {
    .crystal-site-hero {
        padding: 25px 20px;
    }
    
    .crystal-site-title {
        font-size: 20px;
    }
    
    .crystal-site-actions {
        padding: 20px;
    }
    
    .crystal-breadcrumb-content {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .crystal-breadcrumb-current {
        max-width: 120px;
    }
    
    .crystal-site-icon {
        width: 60px;
        height: 60px;
    }
    
    .crystal-site-description {
        font-size: 14px;
    }
    
    .crystal-meta-item {
        font-size: 12px;
    }
    
    .crystal-action-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .crystal-section-header {
        padding: 15px 20px;
    }
    
    .crystal-section-title {
        font-size: 16px;
    }
    
    .crystal-stat-item {
        padding: 15px;
    }
    
    .crystal-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .crystal-stat-value {
        font-size: 20px;
    }
    
    .crystal-stat-label {
        font-size: 12px;
    }
    
    .crystal-detail-item {
        padding: 12px 15px;
    }
    
    .crystal-detail-label,
    .crystal-detail-value {
        font-size: 12px;
    }
    
    .crystal-benefits-grid {
        padding: 15px;
        gap: 12px;
    }
    
    .crystal-benefit-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .crystal-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        align-self: center;
    }
    
    .crystal-benefit-content h4 {
        font-size: 14px;
    }
    
    .crystal-benefit-content p {
        font-size: 12px;
    }
    
    .crystal-tools-list {
        padding: 15px;
        gap: 10px;
    }
    
    .crystal-tool-link {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .crystal-related-sites {
        padding: 15px;
        gap: 10px;
    }
    
    .crystal-related-item {
        padding: 10px 12px;
    }
    
    .crystal-related-title {
        font-size: 12px;
    }
    
    .crystal-share-header {
        padding: 15px 20px;
    }
    
    .crystal-share-title {
        font-size: 16px;
    }
    
    .crystal-share-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .crystal-site-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .crystal-site-sidebar {
        order:1;
    }
    
    .crystal-sidebar-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .crystal-sidebar-card {
        border-radius: 12px;
    }
    
    .crystal-card-header {
        padding: 15px 20px;
    }
    
    .crystal-card-title {
        font-size: 14px;
    }
    
    .crystal-tools-list,
    .crystal-related-sites {
        padding: 15px;
    }
    
    .crystal-tools-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .crystal-tool-link {
        padding: 10px 8px;
        font-size: 12px;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }
    
    .crystal-tool-link span {
        font-size: 11px;
    }
    
    .crystal-related-sites {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .crystal-related-item {
        padding: 8px 12px;
    }
    
    .crystal-related-icon {
        width: 20px;
        height: 20px;
    }
    
    .crystal-related-title {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .crystal-site-wrapper {
        padding: 0 8px;
    }
    
    .crystal-breadcrumb-content {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .crystal-site-hero {
        padding: 20px 15px;
    }
    
    .crystal-site-title {
        font-size: 18px;
    }
    
    .crystal-site-description {
        font-size: 13px;
    }
    
    .crystal-site-actions {
        padding: 15px;
        gap: 8px;
    }
    
    .crystal-action-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .crystal-section-header {
        padding: 12px 15px;
    }
    
    .crystal-section-title {
        font-size: 14px;
    }
    
    .crystal-tools-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }
    
    .crystal-tool-link {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .crystal-tool-link i {
        font-size: 14px;
    }
    
    .crystal-tool-link span {
        font-size: 10px;
    }
}

.crystal-sidebar-sticky::-webkit-scrollbar {
    width: 4px;
}

.crystal-sidebar-sticky::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.crystal-sidebar-sticky::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 2px;
}

.crystal-sidebar-sticky::-webkit-scrollbar-thumb:hover {
    background: #95a5a6;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.crystal-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.crystal-stat-value {
    transition: all 0.3s ease;
}

.crystal-stat-value.animating {
    color: #3498db;
}

.crystal-site-header-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.crystal-stats-section:hover,
.crystal-details-section:hover,
.crystal-benefits-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.crystal-action-btn:focus,
.crystal-tool-link:focus,
.crystal-related-item:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

@media print {

    
    .crystal-site-container {
        background: #fff !important;
    }
    
    .crystal-site-layout {
        grid-template-columns: 1fr !important;
    }
    
    .crystal-site-sidebar {
        display: none !important;
    }
}

@media (prefers-contrast: high) {
    .crystal-site-hero {
        border-bottom: 2px solid #000;
    }
    
    .crystal-section-header {
        border-bottom: 2px solid #000;
    }
    
    .crystal-action-btn {
        border: 2px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .crystal-shape {
        animation: none !important;
    }
}

@media (prefers-color-scheme: dark) {
    .crystal-site-container {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    }
    
    .crystal-site-header-card,
    .crystal-stats-section,
    .crystal-details-section,
    .crystal-benefits-section,
    .crystal-sidebar-card {
        background: #34495e;
        color: #ecf0f1;
    }
    
    .crystal-site-title,
    .crystal-section-title,
    .crystal-card-title {
        color: #ecf0f1;
    }
    
    .crystal-site-description,
    .crystal-meta-item,
    .crystal-stat-label,
    .crystal-detail-label,
    .crystal-benefit-content p {
        color: #bdc3c7;
    }
    
    .crystal-breadcrumb-content {
        background: rgba(52, 73, 94, 0.9);
    }
    
    .crystal-breadcrumb-item {
        color: #bdc3c7;
    }
    
    .crystal-breadcrumb-current {
        color: #ecf0f1;
    }
}
.crystal-article-sidebar {
    min-height: 100vh;
}
.crystal-related-item {
    max-width: 100%;
    overflow: hidden;
}

.crystal-related-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px);
}

@media (max-width: 768px) {
    .crystal-related-item {
        flex-wrap: wrap;
    }
    
    .crystal-related-title {
        white-space: normal;
        max-width: 100%;
    }
}

.crystal-sidebar-card .crystal-related-item {
    padding: 10px 12px;
}

.crystal-sidebar-card .crystal-related-title {
    font-size: 13px;
    max-width: calc(100% - 30px);
}
