* {
    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%, #1a1a2e 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, #16213e 0%, transparent 60%),
        radial-gradient(ellipse at 40% 80%, #0f1419 0%, transparent 40%),
        linear-gradient(180deg, #0a0a1a 0%, #0d1117 40%, #000 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(138, 185, 205, 0.12) 0%, rgba(138, 185, 205, 0.06) 25%, rgba(138, 185, 205, 0.02) 50%, transparent 70%),
        radial-gradient(ellipse at 70% 25%, rgba(138, 185, 205, 0.08) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

.rainy-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.rainy-bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.rainy-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(138, 185, 205, 0.03);
    animation: rainy-float 20s ease-in-out infinite;
}

.rainy-shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.rainy-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.rainy-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

.rainy-drops-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rainy-drop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: rgba(138, 185, 205, 0.6);
    border-radius: 0 0 50% 50%;
    animation: rainy-drop-fall linear infinite;
    pointer-events: none;
}

.rainy-drop-1 {
    left: 10%;
    animation-duration: 2s;
    animation-delay: 0s;
}

.rainy-drop-2 {
    left: 25%;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.rainy-drop-3 {
    left: 45%;
    animation-duration: 1.8s;
    animation-delay: 1s;
}

.rainy-drop-4 {
    left: 70%;
    animation-duration: 2.2s;
    animation-delay: 1.5s;
}

.rainy-drop-5 {
    left: 85%;
    animation-duration: 2.8s;
    animation-delay: 2s;
}

.rainy-drop-dynamic {
    position: absolute;
    width: 2px;
    height: 15px;
    background: rgba(138, 185, 205, 0.6);
    border-radius: 0 0 50% 50%;
    animation: rainy-drop-fall linear;
    pointer-events: none;
}

.rainy-special-drop {
    position: absolute;
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(138, 185, 205, 0.8), rgba(138, 185, 205, 0.4));
    border-radius: 0 0 50% 50%;
    animation: rainy-special-drop-fall 3s linear;
    pointer-events: none;
    box-shadow: 0 0 5px rgba(138, 185, 205, 0.5);
}

@keyframes rainy-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.6;
    }

    66% {
        transform: translateY(10px) rotate(240deg);
        opacity: 0.4;
    }
}

@keyframes rainy-drop-fall {
    0% {
        transform: translateY(-20px);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes rainy-special-drop-fall {
    0% {
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(50vh) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
}

.rainy-site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.rainy-breadcrumb {
    margin-bottom: 20px;
}

.rainy-breadcrumb-content {
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(138, 185, 205, 0.12);
    font-size: 14px;
}

.rainy-breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rainy-breadcrumb-item:hover {
    color: rgba(138, 185, 205, 0.9);
}

.rainy-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.rainy-breadcrumb-current {
    color: rgba(138, 185, 205, 0.9);
}

.rainy-site-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

.rainy-site-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.rainy-site-header-card {
    background: rgba(138, 185, 205, 0.12);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(138, 185, 205, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.rainy-site-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.rainy-site-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.rainy-site-icon {
    flex-shrink: 0;
}

.rainy-site-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(138, 185, 205, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rainy-site-info {
    flex: 1;
    min-width: 0;
}

.rainy-site-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
}

.rainy-site-title i {
    color: rgba(138, 185, 205, 0.8);
}

.rainy-site-description {
    color: rgba(255, 255, 255, 0.8);
    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;
}

.rainy-site-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rainy-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    background: rgba(138, 185, 205, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(138, 185, 205, 0.12);
    white-space: nowrap;
}

.rainy-site-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.rainy-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;
}

.rainy-btn-primary {
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.8), rgba(138, 185, 205, 0.6));
    color: rgba(44, 62, 80, 0.9);
    border: 1px solid rgba(138, 185, 205, 0.8);
}

.rainy-btn-primary:hover {
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.9), rgba(138, 185, 205, 0.7));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 185, 205, 0.3);
}

.rainy-btn-secondary {
    background: rgba(231, 76, 60, 0.2);
    color: rgba(231, 76, 60, 0.9);
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.rainy-btn-secondary:hover,
.rainy-btn-secondary.rainy-liked {
    background: rgba(231, 76, 60, 0.6);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(231, 76, 60, 0.8);
    transform: translateY(-2px);
}

.rainy-btn-outline {
    background: rgba(138, 185, 205, 0.1);
    color: rgba(138, 185, 205, 0.9);
    border: 1px solid rgba(138, 185, 205, 0.2);
}

.rainy-btn-outline:hover {
    background: rgba(138, 185, 205, 0.2);
    border-color: rgba(138, 185, 205, 0.3);
    transform: translateY(-2px);
}

.rainy-stats-section,
.rainy-details-section,
.rainy-benefits-section {
    background: rgba(138, 185, 205, 0.12);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(138, 185, 205, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.rainy-stats-section::before,
.rainy-details-section::before,
.rainy-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.rainy-section-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.rainy-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);
}

.rainy-section-title i {
    color: rgba(138, 185, 205, 0.8);
}

.rainy-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.rainy-stat-item {
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(138, 185, 205, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.rainy-stat-item:hover {
    background: rgba(138, 185, 205, 0.12);
    transform: translateY(-2px);
}

.rainy-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.3), rgba(138, 185, 205, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(138, 185, 205, 0.9);
    flex-shrink: 0;
}

.rainy-stat-content {
    flex: 1;
    min-width: 0;
}

.rainy-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rainy-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.rainy-star-rating {
    height: 20px;
    width: auto;
}

.rainy-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.rainy-detail-item {
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(138, 185, 205, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.rainy-detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    flex-shrink: 0;
}

.rainy-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;
}

.rainy-domain-link {
    color: rgba(138, 185, 205, 0.9);
}

.rainy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.rainy-benefit-item {
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(138, 185, 205, 0.12);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.rainy-benefit-item:hover {
    background: rgba(138, 185, 205, 0.12);
    transform: translateY(-2px);
}

.rainy-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 185, 205, 0.3), rgba(138, 185, 205, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(138, 185, 205, 0.9);
    flex-shrink: 0;
}

.rainy-benefit-content {
    flex: 1;
    min-width: 0;
}

.rainy-benefit-content h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.rainy-benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.rainy-site-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rainy-sidebar-sticky {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rainy-sidebar-card {
    background: rgba(138, 185, 205, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(138, 185, 205, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.rainy-sidebar-card.rainy-card-hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.rainy-card-header {
    background: rgba(138, 185, 205, 0.08);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(138, 185, 205, 0.12);
}

.rainy-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rainy-card-title i {
    color: rgba(138, 185, 205, 0.8);
}

.rainy-tools-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rainy-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border: 1px solid rgba(138, 185, 205, 0.12);
    transition: all 0.3s ease;
}

.rainy-tool-link:hover {
    background: rgba(138, 185, 205, 0.15);
    color: rgba(138, 185, 205, 0.9);
    border-color: rgba(138, 185, 205, 0.25);
    transform: translateX(3px);
}

.rainy-related-sites {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rainy-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(138, 185, 205, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border: 1px solid rgba(138, 185, 205, 0.12);
    transition: all 0.3s ease;
    min-width: 0;
}

.rainy-related-item:hover,
.rainy-related-item.rainy-hover {
    background: rgba(138, 185, 205, 0.15);
    color: rgba(138, 185, 205, 0.9);
    border-color: rgba(138, 185, 205, 0.25);
    transform: translateX(3px);
}

.rainy-related-icon {
    flex-shrink: 0;
}

.rainy-related-icon img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.rainy-related-title {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.rainy-quote-section {
    padding: 20px;
    text-align: center;
}

.rainy-quote-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rainy-quote-author {
    color: rgba(138, 185, 205, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.rainy-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;
}

.rainy-share-overlay.show {
    opacity: 1;
    visibility: visible;
}

.rainy-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(138, 185, 205, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(138, 185, 205, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rainy-share-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.rainy-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(138, 185, 205, 0.15);
    background: rgba(138, 185, 205, 0.08);
    border-radius: 12px 12px 0 0;
}

.rainy-share-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rainy-share-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rainy-share-close:hover {
    background: rgba(138, 185, 205, 0.2);
    color: #fff;
}

.rainy-share-content {
    padding: 25px;
}

.rainy-share-url-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.rainy-share-url {
    flex: 1;
    background: rgba(138, 185, 205, 0.1);
    border: 1px solid rgba(138, 185, 205, 0.2);
    border-radius: 6px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    word-break: break-all;
    min-width: 0;
}

.rainy-share-copy {
    background: rgba(138, 185, 205, 0.2);
    border: 1px solid rgba(138, 185, 205, 0.4);
    border-radius: 6px;
    padding: 12px 20px;
    color: rgba(138, 185, 205, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.rainy-share-copy:hover {
    background: rgba(138, 185, 205, 0.7);
    color: rgba(44, 62, 80, 0.9);
    border-color: rgba(138, 185, 205, 0.7);
}

.rainy-no-scroll {
    overflow: hidden;
}

.rainy-click-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(138, 185, 205, 0.3);
    animation: rainy-ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 9999;
}

@keyframes rainy-ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.rainy-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    body::before {
        width: 100%;
        height: 40%;
    }

    .rainy-site-container {
        padding: 10px;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow-x: hidden !important;
    }

    .rainy-breadcrumb {
        margin-bottom: 15px;
    }

    .rainy-breadcrumb-content {
        padding: 10px 15px;
        font-size: 13px;
    }

    .rainy-site-layout {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .rainy-site-main {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .rainy-site-header-card {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .rainy-site-hero {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .rainy-site-icon {
        align-self: center;
    }

    .rainy-site-title {
        font-size: 20px;
        text-align: center;
        word-break: break-word;
    }

    .rainy-site-description {
        font-size: 15px;
        text-align: center;
        word-break: break-word;
    }

    .rainy-site-meta {
        justify-content: center;
        gap: 10px;
    }

    .rainy-meta-item {
        font-size: 13px;
        padding: 5px 10px;
    }

    .rainy-site-actions {
        justify-content: center;
        gap: 10px;
    }

    .rainy-action-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .rainy-stats-section,
    .rainy-details-section,
    .rainy-benefits-section {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .rainy-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rainy-stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .rainy-stat-value {
        font-size: 20px;
    }

    .rainy-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rainy-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .rainy-detail-value {
        text-align: left;
        margin-left: 0;
        word-break: break-all;
    }

    .rainy-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rainy-benefit-item {
        padding: 15px;
        text-align: center;
        gap: 12px;
    }

    .rainy-benefit-content h4 {
        font-size: 15px;
        text-align: center;
    }

    .rainy-benefit-content p {
        font-size: 13px;
        text-align: center;
    }

    .rainy-site-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .rainy-sidebar-sticky {
        position: static;
        width: 100% !important;
        max-width: 100% !important;
    }

    .rainy-sidebar-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .rainy-tools-list {
        padding: 15px;
        gap: 8px;
    }

    .rainy-tool-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .rainy-related-sites {
        padding: 15px;
        gap: 8px;
    }

    .rainy-related-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .rainy-quote-section {
        padding: 15px;
    }

    .rainy-quote-text {
        font-size: 14px;
    }

    .rainy-quote-author {
        font-size: 12px;
    }

    .rainy-share-popup {
        width: 95%;
        margin: 10px;
    }

    .rainy-share-header {
        padding: 15px;
    }

    .rainy-share-title {
        font-size: 16px;
    }

    .rainy-share-content {
        padding: 15px;
    }

    .rainy-share-url-section {
        flex-direction: column;
        gap: 10px;
    }

    .rainy-share-copy {
        width: 100%;
        text-align: center;
    }
}


.rainy-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: rainy-fadeInUp 0.6s ease forwards;
}

@keyframes rainy-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.rainy-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.rainy-toast {
    background: rgba(138, 185, 205, 0.9);
    color: rgba(44, 62, 80, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(138, 185, 205, 0.3);
    border: 1px solid rgba(138, 185, 205, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.rainy-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.rainy-toast.success {
    background: rgba(46, 204, 113, 0.9);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(46, 204, 113, 0.7);
}

.rainy-toast.error {
    background: rgba(231, 76, 60, 0.9);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(231, 76, 60, 0.7);
}

.rainy-toast.warning {
    background: rgba(241, 196, 15, 0.9);
    color: rgba(44, 62, 80, 0.9);
    border-color: rgba(241, 196, 15, 0.7);
}

.rainy-toast.info {
    background: rgba(138, 185, 205, 0.9);
    color: rgba(44, 62, 80, 0.9);
    border-color: rgba(138, 185, 205, 0.7);
}

.rainy-toast-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.rainy-toast-text {
    flex: 1;
    font-size: 14px;
}

.rainy-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(44, 62, 80, 0.3);
    border-top: 2px solid rgba(44, 62, 80, 0.8);
    border-radius: 50%;
    animation: rainy-spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes rainy-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.touch-device {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.touch-device:active {
    transform: scale(0.98);
}


@media (prefers-contrast: high) {

    .rainy-site-header-card,
    .rainy-stats-section,
    .rainy-details-section,
    .rainy-benefits-section,
    .rainy-sidebar-card {
        border-width: 2px;
        border-color: rgba(138, 185, 205, 0.5);
    }

    .rainy-site-title,
    .rainy-section-title,
    .rainy-card-title {
        color: #fff;
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .rainy-drop,
    .rainy-drop-dynamic,
    .rainy-special-drop,
    .rainy-shape {
        animation: none !important;
    }
}


@media print {

    .rainy-site-bg,
    .rainy-drops-container,
    .rainy-bg-shapes,
    .rainy-share-overlay,
    .rainy-share-popup,
    .rainy-toast-container {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .rainy-site-header-card,
    .rainy-stats-section,
    .rainy-details-section,
    .rainy-benefits-section,
    .rainy-sidebar-card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .rainy-site-title,
    .rainy-section-title,
    .rainy-card-title {
        color: black !important;
        text-shadow: none !important;
    }
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(138, 185, 205, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(138, 185, 205, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 185, 205, 0.5);
}

::-webkit-scrollbar-corner {
    background: rgba(138, 185, 205, 0.1);
}


::selection {
    background: rgba(138, 185, 205, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(138, 185, 205, 0.3);
    color: #fff;
}


.rainy-action-btn:focus,
.rainy-tool-link:focus,
.rainy-related-item:focus,
.rainy-share-copy:focus,
.rainy-share-close:focus {
    outline: 2px solid rgba(138, 185, 205, 0.6);
    outline-offset: 2px;
}


.rainy-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.rainy-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(138, 185, 205, 0.3);
    border-top: 2px solid rgba(138, 185, 205, 0.8);
    border-radius: 50%;
    animation: rainy-spin 1s linear infinite;
}


.rainy-error {
    border-color: rgba(231, 76, 60, 0.5) !important;
    background: rgba(231, 76, 60, 0.1) !important;
}


.rainy-success {
    border-color: rgba(46, 204, 113, 0.5) !important;
    background: rgba(46, 204, 113, 0.1) !important;
}


.rainy-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}


.rainy-hidden {
    display: none !important;
}


.rainy-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;
}