:root {
    --thunder-primary: #1e40af;
    --thunder-secondary: #3b82f6;
    --thunder-accent: #60a5fa;
    --thunder-light: #93c5fd;
    --thunder-electric: #dbeafe;
    --thunder-dark: #1e3a8a;
    --thunder-glow: #3b82f6;
    --thunder-storm: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(30, 64, 175, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 80%, rgba(30, 58, 138, 0.25) 0%, transparent 40%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 40%, #020617 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(147, 197, 253, 0.15) 0%, rgba(147, 197, 253, 0.08) 25%, rgba(147, 197, 253, 0.03) 50%, transparent 70%),
        radial-gradient(ellipse at 70% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}


.thunder-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.thunder-bg-effects {
    position: relative;
    width: 100%;
    height: 100%;
}

.thunder-clouds-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.thunder-cloud {
    position: absolute;
    background: radial-gradient(ellipse at center,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.08) 50%,
            transparent 100%);
    border-radius: 50px;
    animation: thunder-cloud-drift linear infinite;
    filter: blur(1px);
}

@keyframes thunder-cloud-drift {
    0% {
        transform: translateX(-100px) translateY(0px);
    }

    50% {
        transform: translateX(calc(50vw + 50px)) translateY(-10px);
    }

    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0px);
    }
}

.thunder-lightning-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.thunder-lightning-bolt {
    position: absolute;
    background: linear-gradient(180deg,
            #ffffff 0%,
            var(--thunder-light) 30%,
            var(--thunder-secondary) 70%,
            var(--thunder-primary) 100%);
    box-shadow: 0 0 15px var(--thunder-glow), 0 0 30px rgba(59, 130, 246, 0.5);
    animation: thunder-bolt-strike 0.4s ease-out;
    filter: drop-shadow(0 0 8px var(--thunder-glow));
}

@keyframes thunder-bolt-strike {
    0% {
        opacity: 0;
        transform: scaleY(0) scaleX(0.5);
    }

    10% {
        opacity: 1;
        transform: scaleY(1) scaleX(1);
    }

    20% {
        opacity: 0.7;
        transform: scaleY(1) scaleX(0.8);
    }

    30% {
        opacity: 1;
        transform: scaleY(1) scaleX(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(1) scaleX(0.5);
    }
}

.thunder-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.thunder-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(147, 197, 253, 0.08) 30%,
            transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.thunder-energy-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.03) 0%, transparent 60%);
    animation: thunder-energy-pulse 10s ease-in-out infinite;
}

@keyframes thunder-energy-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}


.thunder-site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}


.thunder-breadcrumb {
    margin-bottom: 20px;
}

.thunder-breadcrumb-content {
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.thunder-breadcrumb-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--thunder-accent) 20%,
            var(--thunder-secondary) 50%,
            var(--thunder-accent) 80%,
            transparent 100%);
    animation: thunder-breadcrumb-flow 4s ease-in-out infinite;
}

@keyframes thunder-breadcrumb-flow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.thunder-breadcrumb-item {
    color: var(--thunder-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.thunder-breadcrumb-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--thunder-accent);
    transition: width 0.3s ease;
}

.thunder-breadcrumb-item:hover::before {
    width: 100%;
}

.thunder-breadcrumb-item:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.thunder-breadcrumb-separator {
    color: var(--thunder-accent);
    margin: 0 8px;
    animation: thunder-separator-pulse 2s ease-in-out infinite;
}

@keyframes thunder-separator-pulse {

    0%,
    100% {
        color: var(--thunder-accent);
        text-shadow: none;
    }

    50% {
        color: var(--thunder-light);
        text-shadow: 0 0 8px var(--thunder-glow);
    }
}

.thunder-breadcrumb-current {
    color: #fff;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.thunder-breadcrumb-lightning {
    position: absolute;
    top: 0;
    right: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    animation: thunder-breadcrumb-strike 5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--thunder-glow);
}

@keyframes thunder-breadcrumb-strike {

    0%,
    90%,
    100% {
        opacity: 0;
    }

    5%,
    15% {
        opacity: 0.8;
    }

    10% {
        opacity: 0.5;
    }
}


.thunder-site-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

.thunder-site-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}


.thunder-site-header-card {
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.12) 50%,
            rgba(96, 165, 250, 0.08) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.thunder-card-lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 10px var(--thunder-glow);
}

.thunder-site-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.thunder-site-icon {
    flex-shrink: 0;
    position: relative;
}

.thunder-site-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.thunder-icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(45deg,
            var(--thunder-accent),
            var(--thunder-secondary),
            var(--thunder-light),
            var(--thunder-secondary));
    opacity: 0;
    z-index: -1;
    animation: thunder-icon-rotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

.thunder-site-icon:hover .thunder-icon-glow {
    opacity: 0.6;
}

@keyframes thunder-icon-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thunder-site-info {
    flex: 1;
    min-width: 0;
}

.thunder-site-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
    position: relative;
}

.thunder-title-bolt {
    color: var(--thunder-accent);
    text-shadow: 0 0 15px var(--thunder-glow);
    animation: thunder-title-flicker 2.5s ease-in-out infinite;
}

@keyframes thunder-title-flicker {

    0%,
    100% {
        text-shadow: 0 0 15px var(--thunder-glow);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 25px var(--thunder-glow), 0 0 35px var(--thunder-light);
        transform: scale(1.1);
    }
}

.thunder-title-lightning {
    position: absolute;
    top: 0;
    right: -30px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 50%,
            var(--thunder-primary) 100%);
    opacity: 0;
    animation: thunder-title-strike 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--thunder-glow);
}

@keyframes thunder-title-strike {

    0%,
    85%,
    100% {
        opacity: 0;
    }

    5%,
    15% {
        opacity: 1;
    }

    10% {
        opacity: 0.7;
    }
}

.thunder-site-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
}

.thunder-site-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thunder-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(96, 165, 250, 0.08) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.thunder-meta-item:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}


.thunder-site-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thunder-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.thunder-btn-lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-lightning-active {
    opacity: 1;
    height: 100%;
    animation: thunder-btn-strike 0.8s ease-out;
}

@keyframes thunder-btn-strike {
    0% {
        opacity: 0;
        height: 0;
    }

    20% {
        opacity: 1;
        height: 100%;
        box-shadow: 0 0 15px var(--thunder-glow);
    }

    40% {
        opacity: 0.7;
    }

    60% {
        opacity: 1;
        box-shadow: 0 0 20px var(--thunder-glow);
    }

    100% {
        opacity: 0;
        height: 100%;
    }
}

.thunder-btn-primary {
    background: linear-gradient(135deg,
            var(--thunder-secondary) 0%,
            var(--thunder-accent) 100%);
    color: #fff;
    border: 1px solid var(--thunder-secondary);
}

.thunder-btn-primary:hover {
    background: linear-gradient(135deg,
            var(--thunder-accent) 0%,
            var(--thunder-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.thunder-btn-secondary {
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.2) 0%,
            rgba(248, 113, 113, 0.15) 100%);
    color: rgba(248, 113, 113, 0.9);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.thunder-btn-secondary:hover,
.thunder-btn-secondary.thunder-liked {
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.6) 0%,
            rgba(248, 113, 113, 0.5) 100%);
    color: #fff;
    border-color: rgba(239, 68, 68, 0.8);
    transform: translateY(-2px);
}

.thunder-btn-outline {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(96, 165, 250, 0.08) 100%);
    color: var(--thunder-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.thunder-btn-outline:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2) 0%,
            rgba(96, 165, 250, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}


.thunder-stats-section,
.thunder-details-section,
.thunder-benefits-section {
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.12) 50%,
            rgba(96, 165, 250, 0.08) 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.thunder-section-header {
    margin-bottom: 20px;
    position: relative;
}

.thunder-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 10px rgba(59, 130, 246, 0.3);
    position: relative;
}

.thunder-section-bolt {
    color: var(--thunder-accent);
    text-shadow: 0 0 10px var(--thunder-glow);
    animation: thunder-section-pulse 3s ease-in-out infinite;
}

@keyframes thunder-section-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--thunder-glow);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px var(--thunder-glow), 0 0 25px var(--thunder-light);
        transform: scale(1.05);
    }
}

.thunder-section-lightning {
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.thunder-stat-item {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thunder-stat-item:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.12) 0%,
            rgba(96, 165, 250, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.thunder-stat-lightning {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--thunder-secondary) 0%,
            var(--thunder-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}

.thunder-stat-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg,
            var(--thunder-accent),
            var(--thunder-secondary),
            var(--thunder-light),
            var(--thunder-secondary));
    opacity: 0;
    z-index: -1;
    animation: thunder-stat-rotate 4s linear infinite;
    transition: opacity 0.3s ease;
}

.thunder-stat-item:hover .thunder-stat-glow {
    opacity: 0.4;
}

@keyframes thunder-stat-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thunder-stat-content {
    flex: 1;
    min-width: 0;
}

.thunder-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.thunder-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.thunder-star-rating {
    height: 20px;
    width: auto;
}


.thunder-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.thunder-detail-item {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thunder-detail-item:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.12) 0%,
            rgba(96, 165, 250, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.25);
}

.thunder-detail-lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-detail-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    flex-shrink: 0;
}

.thunder-detail-value {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    text-align: right;
    margin-left: 10px;
}

.thunder-domain-link {
    color: var(--thunder-light);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}


.thunder-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.thunder-benefit-item {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thunder-benefit-item:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.12) 0%,
            rgba(96, 165, 250, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.thunder-benefit-lightning {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--thunder-secondary) 0%,
            var(--thunder-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}

.thunder-benefit-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg,
            var(--thunder-accent),
            var(--thunder-secondary),
            var(--thunder-light),
            var(--thunder-secondary));
    opacity: 0;
    z-index: -1;
    animation: thunder-benefit-rotate 5s linear infinite;
    transition: opacity 0.3s ease;
}

.thunder-benefit-item:hover .thunder-benefit-glow {
    opacity: 0.4;
}

@keyframes thunder-benefit-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thunder-benefit-content {
    flex: 1;
    min-width: 0;
}

.thunder-benefit-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.thunder-benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}


.thunder-site-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thunder-sidebar-sticky {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thunder-sidebar-card {
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.12) 50%,
            rgba(96, 165, 250, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.thunder-card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    position: relative;
}

.thunder-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 10px rgba(59, 130, 246, 0.3);
    position: relative;
}

.thunder-card-bolt {
    color: var(--thunder-accent);
    text-shadow: 0 0 10px var(--thunder-glow);
    animation: thunder-card-pulse 3s ease-in-out infinite;
}

@keyframes thunder-card-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--thunder-glow);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px var(--thunder-glow), 0 0 25px var(--thunder-light);
        transform: scale(1.05);
    }
}

.thunder-card-title-lightning {
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}


.thunder-tools-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thunder-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thunder-tool-link:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--thunder-light);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.thunder-tool-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-tool-link i {
    color: var(--thunder-accent);
    width: 16px;
    text-align: center;
}


.thunder-related-sites {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thunder-related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thunder-related-item:hover {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--thunder-light);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.thunder-related-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}

.thunder-related-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.thunder-related-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thunder-related-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thunder-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thunder-share-overlay.show {
    opacity: 1;
    visibility: visible;
}

.thunder-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.15) 0%,
            rgba(59, 130, 246, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thunder-share-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.thunder-share-header {
    padding: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.thunder-share-header-lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 10px var(--thunder-glow);
}

.thunder-share-title {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 10px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.thunder-share-title i {
    color: var(--thunder-accent);
    text-shadow: 0 0 10px var(--thunder-glow);
}

.thunder-share-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thunder-share-close:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
    transform: rotate(90deg);
}

.thunder-share-content {
    padding: 25px;
}

.thunder-share-url-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.thunder-share-url {
    flex: 1;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(96, 165, 250, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    word-break: break-all;
    user-select: all;
}

.thunder-share-copy {
    background: linear-gradient(135deg,
            var(--thunder-secondary) 0%,
            var(--thunder-accent) 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.thunder-share-copy:hover {
    background: linear-gradient(135deg,
            var(--thunder-accent) 0%,
            var(--thunder-light) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.thunder-copy-lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg,
            var(--thunder-light) 0%,
            var(--thunder-secondary) 100%);
    opacity: 0;
    transform-origin: top;
    box-shadow: 0 0 8px var(--thunder-glow);
}


.thunder-toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
}

.thunder-toast {
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.9) 0%,
            rgba(59, 130, 246, 0.8) 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.thunder-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.thunder-toast.success {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.9) 0%,
            rgba(74, 222, 128, 0.8) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.thunder-toast.error {
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.9) 0%,
            rgba(248, 113, 113, 0.8) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.thunder-toast.warning {
    background: linear-gradient(135deg,
            rgba(245, 158, 11, 0.9) 0%,
            rgba(251, 191, 36, 0.8) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.thunder-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.thunder-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: thunder-spin 1s linear infinite;
}

@keyframes thunder-spin {
    to {
        transform: rotate(360deg);
    }
}


.thunder-shake {
    animation: thunder-shake 0.6s ease-in-out;
}

@keyframes thunder-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-3px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(3px);
    }
}

.thunder-no-scroll {
    overflow: hidden;
}


.thunder-sidebar-sticky::-webkit-scrollbar {
    width: 6px;
}

.thunder-sidebar-sticky::-webkit-scrollbar-track {
    background: rgba(30, 64, 175, 0.1);
    border-radius: 3px;
}

.thunder-sidebar-sticky::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,
            var(--thunder-accent),
            var(--thunder-secondary));
    border-radius: 3px;
    transition: background 0.3s ease;
}

.thunder-sidebar-sticky::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,
            var(--thunder-light),
            var(--thunder-accent));
}


::selection {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
}


.thunder-action-btn:focus,
.thunder-tool-link:focus,
.thunder-related-item:focus,
.thunder-share-close:focus,
.thunder-share-copy:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}


@media (max-width: 1024px) {
    .thunder-site-layout {
        grid-template-columns: 1fr;
    }

    .thunder-site-sidebar {
        order: 1;
    }

    .thunder-sidebar-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
        flex-direction: row;
        gap: 15px;
    }

    .thunder-sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .thunder-site-container {
        padding: 15px;
    }

    .thunder-site-layout {
        gap: 15px;
    }

    .thunder-site-header-card {
        padding: 20px;
    }

    .thunder-site-hero {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .thunder-site-title {
        font-size: 20px;
        justify-content: center;
    }

    .thunder-site-meta {
        justify-content: center;
        gap: 10px;
    }

    .thunder-meta-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .thunder-site-actions {
        justify-content: center;
        gap: 10px;
    }

    .thunder-action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .thunder-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .thunder-stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .thunder-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .thunder-stat-value {
        font-size: 20px;
    }

    .thunder-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .thunder-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .thunder-detail-value {
        text-align: left;
        margin-left: 0;
    }

    .thunder-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .thunder-benefit-item {
        padding: 15px;
    }

    .thunder-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .thunder-sidebar-sticky {
        flex-direction: column;
        gap: 15px;
    }

    .thunder-sidebar-card {
        min-width: auto;
    }

    .thunder-share-popup {
        width: 95%;
    }

    .thunder-share-url-section {
        flex-direction: column;
        gap: 8px;
    }

    .thunder-share-copy {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thunder-site-container {
        padding: 10px;
    }

    .thunder-breadcrumb-content {
        padding: 10px 15px;
        font-size: 12px;
    }

    .thunder-site-header-card {
        padding: 15px;
    }

    .thunder-site-title {
        font-size: 18px;
    }

    .thunder-site-description {
        font-size: 14px;
    }

    .thunder-stats-grid {
        grid-template-columns: 1fr;
    }

    .thunder-stat-item {
        padding: 12px;
    }

    .thunder-section-title {
        font-size: 16px;
    }

    .thunder-card-title {
        font-size: 14px;
    }

    .thunder-tools-list,
    .thunder-related-sites {
        padding: 15px;
    }

    .thunder-tool-link,
    .thunder-related-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .thunder-bg-effects {
        display: none !important;
    }

    .thunder-lightning-active,
    .thunder-breadcrumb-lightning,
    .thunder-title-lightning,
    .thunder-section-lightning,
    .thunder-stat-lightning,
    .thunder-detail-lightning,
    .thunder-benefit-lightning,
    .thunder-card-title-lightning,
    .thunder-tool-lightning,
    .thunder-related-lightning,
    .thunder-share-header-lightning,
    .thunder-copy-lightning {
        display: none !important;
    }
}


@media print {

    .thunder-site-bg,
    .thunder-breadcrumb,
    .thunder-site-actions,
    .thunder-site-sidebar,
    .thunder-share-overlay,
    .thunder-share-popup {
        display: none !important;
    }

    .thunder-site-container {
        max-width: none;
        padding: 0;
    }

    .thunder-site-layout {
        grid-template-columns: 1fr;
    }

    .thunder-site-header-card,
    .thunder-stats-section,
    .thunder-details-section,
    .thunder-benefits-section {
        background: none !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        color: #000 !important;
        page-break-inside: avoid;
    }

    .thunder-site-title,
    .thunder-section-title,
    .thunder-stat-value,
    .thunder-detail-value,
    .thunder-benefit-content h4 {
        color: #000 !important;
        text-shadow: none !important;
    }

    .thunder-site-description,
    .thunder-stat-label,
    .thunder-detail-label,
    .thunder-benefit-content p {
        color: #333 !important;
    }
}