* {
    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: linear-gradient(135deg, #87CEEB 0%, #98FB98 25%, #FFE4B5 50%, #FFA07A 75%, #DDA0DD 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}


.sunny-breadcrumb {
    padding: 20px 0 12px 0;
    margin-bottom: 20px;
}

.sunny-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.sunny-breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    word-break: break-word;
}

.sunny-breadcrumb-item:hover {
    color: #ffc107;
}

.sunny-breadcrumb-separator {
    color: #999;
    margin: 0 8px;
}

.sunny-breadcrumb-current {
    color: #ffc107;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sunny-breadcrumb i {
    color: #ffc107;
    margin-right: 5px;
}


.sunny-site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.sunny-site-wrapper {
    position: relative;
}

.sunny-site-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

.sunny-site-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}


.sunny-site-header-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sunny-site-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.sunny-site-icon {
    flex-shrink: 0;
}

.sunny-site-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.sunny-site-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sunny-site-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    overflow: hidden;
}

.sunny-site-title i {
    color: #ffc107;
    flex-shrink: 0;
}

.sunny-site-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sunny-site-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    overflow: hidden;
}

.sunny-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    background: rgba(255, 193, 7, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.sunny-meta-item i {
    color: #ffc107;
    flex-shrink: 0;
}


.sunny-site-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    overflow: hidden;
}

.sunny-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    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;
    text-overflow: ellipsis;
    max-width: 200px;
}

.sunny-action-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-btn-primary {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #333;
    border: 1px solid #ffc107;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.sunny-btn-primary:hover {
    background: linear-gradient(135deg, #ffb300, #ffa000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.sunny-btn-secondary {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.sunny-btn-secondary:hover,
.sunny-btn-secondary.sunny-liked {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.sunny-btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sunny-btn-outline:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
}


.sunny-stats-section,
.sunny-details-section,
.sunny-benefits-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sunny-section-header {
    margin-bottom: 20px;
    overflow: hidden;
}

.sunny-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.sunny-section-title i {
    color: #ffc107;
    flex-shrink: 0;
}

.sunny-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    overflow: hidden;
}

.sunny-stat-item {
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sunny-stat-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.sunny-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.sunny-stat-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sunny-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-stat-label {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-star-rating {
    display: flex;
    gap: 2px;
    overflow: hidden;
}

.sunny-star-rating i {
    color: #ffc107;
    font-size: 16px;
}


.sunny-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    overflow: hidden;
}

.sunny-detail-item {
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.sunny-detail-label {
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}

.sunny-detail-value {
    color: #333;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: right;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-domain-link {
    color: #ffc107;
}


.sunny-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    overflow: hidden;
}

.sunny-benefit-item {
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sunny-benefit-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.sunny-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.sunny-benefit-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sunny-benefit-content h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sunny-benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.sunny-site-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sunny-sidebar-sticky {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sunny-sidebar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sunny-card-header {
    background: rgba(255, 193, 7, 0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    overflow: hidden;
}

.sunny-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-card-title i {
    color: #ffc107;
    flex-shrink: 0;
}

.sunny-tools-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.sunny-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sunny-tool-link:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #333;
    border-color: #ffc107;
    transform: translateX(3px);
}

.sunny-tool-link i {
    color: #ffc107;
    flex-shrink: 0;
}

.sunny-tool-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sunny-related-sites {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.sunny-related-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.sunny-related-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #333;
    border-color: #ffc107;
    transform: translateX(3px);
}

.sunny-related-icon {
    flex-shrink: 0;
}

.sunny-related-icon img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.sunny-related-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sunny-related-title {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    margin-bottom: 2px;
    font-weight: 500;
}

.sunny-related-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}


.sunny-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.sunny-share-modal.sunny-show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.sunny-share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.sunny-share-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sunny-share-modal.sunny-show .sunny-share-modal-content {
    transform: scale(1);
}

.sunny-share-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 193, 7, 0.1);
    overflow: hidden;
}

.sunny-share-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-share-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sunny-share-close:hover {
    background: rgba(255, 193, 7, 0.2);
    color: #333;
}

.sunny-share-modal-body {
    padding: 25px;
    overflow: hidden;
}

.sunny-share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.sunny-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.sunny-share-option:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.sunny-share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sunny-share-icon.sunny-weibo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.sunny-share-icon.sunny-qq {
    background: linear-gradient(135deg, #12b7f5, #0e9fe5);
}

.sunny-share-icon.sunny-qzone {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
}

.sunny-share-icon.sunny-copy {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.sunny-share-option span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-share-link-box {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding-top: 20px;
    overflow: hidden;
}

.sunny-share-link-box label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sunny-link-input-group {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.sunny-link-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sunny-link-input-group input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.sunny-link-input-group button {
    padding: 10px 16px;
    border: 1px solid #ffc107;
    border-radius: 6px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sunny-link-input-group button:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}


.sunny-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 99999;
    display: none;
    font-size: 14px;
    max-width: 300px;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sunny-toast.success {
    background: rgba(40, 167, 69, 0.9);
}

.sunny-toast.error {
    background: rgba(220, 53, 69, 0.9);
}

.sunny-toast.warning {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.sunny-toast.info {
    background: rgba(23, 162, 184, 0.9);
}


.sunny-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: sunny-fadeInUp 0.6s ease forwards;
}

@keyframes sunny-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sunny-action-btn.sunny-animate {
    animation: sunny-pulse 0.3s ease;
}

@keyframes sunny-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    .sunny-breadcrumb-inner {
        margin: 0 15px;
        padding: 12px 15px;
    }

    .sunny-site-container {
        padding: 0 15px;
    }

    .sunny-site-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sunny-site-header-card {
        padding: 20px;
    }

    .sunny-site-hero {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

    .sunny-site-icon img {
        width: 60px;
        height: 60px;
    }

    .sunny-site-title {
        font-size: 20px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .sunny-site-description {
        font-size: 14px;
        text-align: center;
        -webkit-line-clamp: 4;
    }

    .sunny-site-meta {
        justify-content: center;
        gap: 8px;
    }

    .sunny-meta-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .sunny-site-actions {
        justify-content: center;
        gap: 10px;
    }

    .sunny-action-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .sunny-stats-section,
    .sunny-details-section,
    .sunny-benefits-section {
        padding: 20px;
    }

    .sunny-section-title {
        font-size: 16px;
    }

    .sunny-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sunny-stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .sunny-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .sunny-stat-value {
        font-size: 20px;
    }

    .sunny-stat-label {
        font-size: 12px;
    }

    .sunny-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sunny-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }

    .sunny-detail-value {
        text-align: left;
        margin-left: 0;
    }

    .sunny-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sunny-benefit-item {
        padding: 15px;
    }

    .sunny-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .sunny-benefit-content h4 {
        font-size: 14px;
    }

    .sunny-benefit-content p {
        font-size: 13px;
    }

    .sunny-tools-list,
    .sunny-related-sites {
        padding: 15px;
    }

    .sunny-tool-link,
    .sunny-related-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sunny-share-modal-content {
        width: 95%;
        margin: 20px;
    }

    .sunny-share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sunny-share-modal-header,
    .sunny-share-modal-body {
        padding: 15px;
    }

    .sunny-link-input-group {
        flex-direction: column;
    }

    .sunny-link-input-group button {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .sunny-site-container {
        padding: 8px;
    }

    .sunny-site-header-card {
        padding: 15px;
    }

    .sunny-site-title {
        font-size: 18px;
    }

    .sunny-site-description {
        font-size: 13px;
    }

    .sunny-action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .sunny-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sunny-stat-item {
        padding: 12px;
    }

    .sunny-details-section,
    .sunny-benefits-section {
        padding: 15px;
    }
}


.sunny-site-title,
.sunny-site-description,
.sunny-detail-value,
.sunny-benefit-content h4,
.sunny-benefit-content p,
.sunny-related-title,
.sunny-tool-link span {
    hyphens: auto;
}

.sunny-detail-value {
    word-break: break-all;
    white-space: normal;
}