* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


body.daylight-theme {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        radial-gradient(ellipse at 20% 10%, #87CEEB 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, #98D8E8 0%, transparent 60%),
        radial-gradient(ellipse at 40% 80%, #B0E0E6 0%, transparent 40%),
        linear-gradient(180deg, #87CEEB 0%, #98D8E8 40%, #E0F6FF 100%);
    min-height: 100vh;
    position: relative;
    width: 100%;
}

body.daylight-theme::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        radial-gradient(ellipse at 70% 25%, rgba(173, 216, 230, 0.3) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

.daylight-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.daylight-bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.daylight-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: daylight-float 20s ease-in-out infinite;
}

.daylight-shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.daylight-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.daylight-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes daylight-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}


.daylight-clouds-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.daylight-cloud-deco {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    animation: daylight-cloud-float 30s linear infinite;
}

.daylight-cloud-deco-1 {
    width: 100px;
    height: 30px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.daylight-cloud-deco-1::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -25px;
    left: 15px;
}

.daylight-cloud-deco-2 {
    width: 80px;
    height: 25px;
    top: 50%;
    right: -100px;
    animation-delay: 10s;
}

.daylight-cloud-deco-2::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -20px;
    left: 10px;
}

.daylight-cloud-deco-3 {
    width: 120px;
    height: 35px;
    bottom: 20%;
    left: -100px;
    animation-delay: 20s;
}

.daylight-cloud-deco-3::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: -30px;
    left: 20px;
}

@keyframes daylight-cloud-float {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(120vw);
    }
}


.daylight-site-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.daylight-breadcrumb {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

.daylight-breadcrumb-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-breadcrumb-item {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.daylight-breadcrumb-item:hover {
    color: #0056b3;
}

.daylight-breadcrumb-separator {
    color: #6c757d;
    margin: 0 8px;
}

.daylight-breadcrumb-current {
    color: #343a40;
    font-weight: 500;
    word-break: break-all;
    overflow-wrap: anywhere;
}


.daylight-site-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    max-width: 1200px;
    box-sizing: border-box;
}

.daylight-site-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}


.daylight-site-header-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-site-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.daylight-site-icon {
    flex-shrink: 0;
}

.daylight-site-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease;
}

.daylight-site-hero:hover .daylight-site-icon img {
    transform: scale(1.05);
}

.daylight-site-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}


.daylight-site-title {
    font-size: 24px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;


    max-width: 100% !important;
    width: 100%;
    overflow: hidden;
    white-space: normal;
}

.daylight-site-title i {
    color: #007bff;
    flex-shrink: 0;
}


.daylight-site-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;


    max-width: 100% !important;
    width: 100%;
    overflow: hidden;
    white-space: normal;
}

.daylight-site-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.daylight-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 14px;
    background: rgba(0, 123, 255, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;


    max-width: 100%;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.daylight-meta-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.daylight-meta-item i {
    color: #007bff;
    flex-shrink: 0;
}

.daylight-site-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.daylight-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;
    max-width: 100%;
}

.daylight-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: 1px solid rgba(0, 123, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.daylight-btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.daylight-btn-secondary {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.daylight-btn-secondary:hover,
.daylight-btn-secondary.daylight-liked {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
}

.daylight-btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #6c757d;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.daylight-btn-outline:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}


.daylight-stats-section,
.daylight-details-section,
.daylight-benefits-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-section-header {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

.daylight-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    word-break: break-all;
}

.daylight-section-title i {
    color: #007bff;
    flex-shrink: 0;
}


.daylight-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    width: 100%;
    overflow: hidden;
}

.daylight-stat-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-stat-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.daylight-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007bff;
    flex-shrink: 0;
}

.daylight-stat-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

.daylight-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 5px;
    word-break: break-all;
    overflow: hidden;
}

.daylight-stat-label {
    font-size: 14px;
    color: #6c757d;
    word-break: break-all;
    overflow: hidden;
}


.daylight-star-rating {
    display: flex;
    gap: 2px;
    height: 20px;
    overflow: hidden;
}

.daylight-star-rating i {
    font-size: 18px;
    color: #ffc107;
}

.daylight-star-rating i.fa-star-o {
    color: #dee2e6;
}


.daylight-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    overflow: hidden;
}

.daylight-detail-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 8px;
}

.daylight-detail-item:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.2);
}

.daylight-detail-label {
    color: #6c757d;
    font-size: 14px;
    flex-shrink: 0;
    min-width: 80px;
    max-width: 120px;
    word-break: break-all;
}

.daylight-detail-value {
    color: #343a40;
    font-weight: 500;
    flex: 1;
    min-width: 0;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;


    max-width: 100% !important;
    overflow: hidden;
    text-align: right;
    margin-left: 10px;
}

.daylight-domain-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
}

.daylight-domain-link:hover {
    color: #0056b3;
    text-decoration: underline;
}


.daylight-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.daylight-benefit-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-benefit-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.daylight-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007bff;
    flex-shrink: 0;
}

.daylight-benefit-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

.daylight-benefit-content h4 {
    color: #343a40;
    font-size: 16px;
    margin-bottom: 8px;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;


    max-width: 100% !important;
    overflow: hidden;
}

.daylight-benefit-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;


    max-width: 100% !important;
    overflow: hidden;
}


.daylight-site-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
}

.daylight-sidebar-sticky {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.daylight-sidebar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.daylight-card-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 1px;
}

.daylight-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    width: 100%;
    overflow: hidden;
    word-break: break-all;
}

.daylight-card-title i {
    color: #007bff;
    font-size: 18px;
    flex-shrink: 0;
}

.daylight-tools-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #6c757d;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
}

.daylight-tool-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #007bff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daylight-tool-link:hover::before {
    transform: scaleY(1);
}

.daylight-tool-link:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(3px);
    border-color: rgba(0, 123, 255, 0.2);
}

.daylight-tool-link i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    color: #007bff;
    flex-shrink: 0;
}

.daylight-tool-link span {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
}

.daylight-related-sites {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 123, 255, 0.3) rgba(0, 123, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.daylight-related-sites::-webkit-scrollbar {
    width: 6px;
}

.daylight-related-sites::-webkit-scrollbar-track {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 3px;
}

.daylight-related-sites::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.daylight-related-sites::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.5);
}

.daylight-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.05);
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.daylight-related-item:last-child {
    margin-bottom: 0;
}

.daylight-related-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #007bff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.daylight-related-item:hover::before,
.daylight-related-item.daylight-hover::before {
    transform: scaleY(1);
}

.daylight-related-item:hover,
.daylight-related-item.daylight-hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(3px);
    border-color: rgba(0, 123, 255, 0.2);
}

.daylight-related-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

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

.daylight-related-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    min-width: 0;
    overflow: hidden;


    white-space: nowrap;
    text-overflow: ellipsis;


    /*
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    white-space: normal;
    */
}


.daylight-related-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    border: 1px dashed rgba(0, 123, 255, 0.2);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-related-empty i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: rgba(0, 123, 255, 0.4);
}

.daylight-related-empty p {
    font-size: 14px;
    margin: 0;
    word-break: break-all;
}


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

.daylight-share-overlay.show {
    opacity: 1;
    visibility: visible;
}

.daylight-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 400px;
    max-width: 90vw;
    overflow: hidden;
    box-sizing: border-box;
}

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

.daylight-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-share-title {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-break: break-all;
}

.daylight-share-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.daylight-share-close:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.daylight-share-content {
    padding: 25px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-share-url-section {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}

.daylight-share-url {
    flex: 1;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
    min-width: 0;
    overflow: hidden;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    white-space: normal;
}

.daylight-share-copy {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    flex-shrink: 0;
}

.daylight-share-copy:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}


.daylight-no-scroll {
    overflow: hidden;
}


.daylight-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    width: auto;
}

.daylight-toast {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 250px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.daylight-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.daylight-toast.success {
    border-color: rgba(40, 167, 69, 0.2);
    background: rgba(40, 167, 69, 0.05);
}

.daylight-toast.error {
    border-color: rgba(220, 53, 69, 0.2);
    background: rgba(220, 53, 69, 0.05);
}

.daylight-toast.warning {
    border-color: rgba(255, 193, 7, 0.2);
    background: rgba(255, 193, 7, 0.05);
}

.daylight-toast.info {
    border-color: rgba(0, 123, 255, 0.2);
    background: rgba(0, 123, 255, 0.05);
}

.daylight-toast-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.daylight-toast.success .daylight-toast-icon {
    color: #28a745;
}

.daylight-toast.error .daylight-toast-icon {
    color: #dc3545;
}

.daylight-toast.warning .daylight-toast-icon {
    color: #ffc107;
}

.daylight-toast.info .daylight-toast-icon {
    color: #007bff;
}

.daylight-toast-text {
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    overflow: hidden;


    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
}


.daylight-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: daylight-spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes daylight-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
    .daylight-site-container {
        padding: 15px;
    }

    .daylight-site-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .daylight-site-header-card {
        padding: 20px;
    }

    .daylight-site-hero {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .daylight-site-icon {
        align-self: center;
    }

    .daylight-site-title {
        font-size: 20px;
        justify-content: center;
        text-align: center;
    }

    .daylight-site-description {
        text-align: center;
        font-size: 15px;
    }

    .daylight-site-meta {
        justify-content: center;
        gap: 10px;
    }

    .daylight-meta-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .daylight-site-actions {
        justify-content: center;
        gap: 10px;
    }

    .daylight-action-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section {
        padding: 20px;
    }

    .daylight-section-title {
        font-size: 16px;
    }

    .daylight-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .daylight-stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .daylight-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .daylight-stat-value {
        font-size: 20px;
    }

    .daylight-stat-label {
        font-size: 13px;
    }

    .daylight-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .daylight-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .daylight-detail-label {
        font-size: 13px;
        min-width: auto;
        max-width: none;
    }

    .daylight-detail-value {
        text-align: left;
        margin-left: 0;
        font-size: 13px;
        width: 100%;
    }

    .daylight-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .daylight-benefit-item {
        padding: 15px;
    }

    .daylight-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .daylight-benefit-content h4 {
        font-size: 15px;
    }

    .daylight-benefit-content p {
        font-size: 13px;
    }

    .daylight-sidebar-sticky {
        position: static;
        top: auto;
    }

    .daylight-card-header {
        padding: 12px 15px;
    }

    .daylight-card-title {
        font-size: 15px;
    }

    .daylight-tools-list {
        padding: 15px;
        gap: 6px;
    }

    .daylight-tool-link {
        padding: 8px 10px;
        font-size: 13px;
    }

    .daylight-tool-link span {
        font-size: 13px;
    }

    .daylight-related-sites {
        padding: 15px;
        max-height: 300px;
    }

    .daylight-related-item {
        padding: 10px;
    }

    .daylight-related-title {
        font-size: 13px;
    }

    .daylight-share-popup {
        min-width: 300px;
        margin: 20px;
        max-width: calc(100vw - 40px);
    }

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

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

    .daylight-share-content {
        padding: 20px;
    }

    .daylight-share-url-section {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .daylight-share-url {
        font-size: 13px;
        padding: 10px 12px;
    }

    .daylight-share-copy {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }

    .daylight-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .daylight-toast {
        min-width: auto;
        width: 100%;
        max-width: none;
    }

    .daylight-toast-text {
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .daylight-site-container {
        padding: 10px;
    }

    .daylight-breadcrumb-content {
        padding: 8px 12px;
        font-size: 12px;
    }

    .daylight-site-header-card {
        padding: 15px;
    }

    .daylight-site-title {
        font-size: 18px;
    }

    .daylight-site-description {
        font-size: 14px;
    }

    .daylight-meta-item {
        font-size: 11px;
        padding: 3px 6px;
    }

    .daylight-action-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section {
        padding: 15px;
    }

    .daylight-section-title {
        font-size: 15px;
    }

    .daylight-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .daylight-stat-item {
        padding: 12px;
    }

    .daylight-stat-value {
        font-size: 18px;
    }

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

    .daylight-detail-item {
        padding: 10px;
    }

    .daylight-detail-label,
    .daylight-detail-value {
        font-size: 12px;
    }

    .daylight-benefit-item {
        padding: 12px;
    }

    .daylight-benefit-content h4 {
        font-size: 14px;
    }

    .daylight-benefit-content p {
        font-size: 12px;
    }

    .daylight-share-popup {
        min-width: 280px;
        margin: 15px;
        max-width: calc(100vw - 30px);
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .daylight-site-layout {
        grid-template-columns: 1fr 280px;
        gap: 18px;
    }

    .daylight-site-container {
        padding: 18px;
    }

    .daylight-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .daylight-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .daylight-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}


@media (min-width: 1400px) {
    .daylight-site-container {
        max-width: 1400px;
    }

    .daylight-site-layout {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }

    .daylight-site-header-card {
        padding: 35px;
    }

    .daylight-site-title {
        font-size: 26px;
    }

    .daylight-site-description {
        font-size: 17px;
    }

    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section {
        padding: 30px;
    }

    .daylight-section-title {
        font-size: 20px;
    }
}


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

    .daylight-shape,
    .daylight-cloud-deco {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .daylight-toast,
    .daylight-share-popup,
    .daylight-share-overlay,
    .daylight-action-btn,
    .daylight-tool-link,
    .daylight-related-item,
    .daylight-stat-item,
    .daylight-detail-item,
    .daylight-benefit-item {
        transition: none !important;
        animation: none !important;
    }

    .daylight-loading-spinner {
        animation: none !important;
        border: 2px solid #007bff !important;
        border-top: 2px solid transparent !important;
    }
}


@media (prefers-contrast: high) {
    body.daylight-theme {
        background: #fff !important;
        color: #000 !important;
    }

    body.daylight-theme::before {
        display: none !important;
    }

    .daylight-site-bg {
        display: none !important;
    }

    .daylight-site-header-card,
    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section,
    .daylight-sidebar-card {
        background: #fff !important;
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }

    .daylight-breadcrumb-content {
        background: #fff !important;
        border: 2px solid #000 !important;
    }

    .daylight-site-title,
    .daylight-section-title,
    .daylight-card-title {
        color: #000 !important;
    }

    .daylight-action-btn,
    .daylight-tool-link,
    .daylight-related-item {
        background: #fff !important;
        border: 1px solid #000 !important;
        color: #000 !important;
    }

    .daylight-btn-primary {
        background: #000 !important;
        color: #fff !important;
    }
}


@media print {

    .daylight-site-bg,
    .daylight-site-actions,
    .daylight-site-sidebar,
    .daylight-share-overlay,
    .daylight-share-popup,
    .daylight-toast-container {
        display: none !important;
    }

    body.daylight-theme {
        background: #fff !important;
        color: #000 !important;
    }

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

    .daylight-site-container {
        max-width: none !important;
        padding: 0 !important;
    }

    .daylight-site-header-card,
    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section {
        background: #fff !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }

    .daylight-breadcrumb {
        display: none !important;
    }

    .daylight-site-title {
        color: #000 !important;
        font-size: 22px !important;
    }

    .daylight-section-title {
        color: #000 !important;
        font-size: 16px !important;
    }
}


.daylight-action-btn:focus,
.daylight-tool-link:focus,
.daylight-related-item:focus,
.daylight-share-close:focus,
.daylight-share-copy:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.daylight-action-btn:focus-visible,
.daylight-tool-link:focus-visible,
.daylight-related-item:focus-visible,
.daylight-share-close:focus-visible,
.daylight-share-copy:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}


.daylight-site-container ::selection {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.daylight-site-container ::-moz-selection {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}


.daylight-site-container ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.daylight-site-container ::-webkit-scrollbar-track {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 4px;
}

.daylight-site-container ::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.daylight-site-container ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.5);
}


@media (prefers-color-scheme: dark) {
    body.daylight-theme {
        background:
            radial-gradient(ellipse at 20% 10%, #1e3a8a 0%, transparent 50%),
            radial-gradient(ellipse at 80% 30%, #1e40af 0%, transparent 60%),
            radial-gradient(ellipse at 40% 80%, #1d4ed8 0%, transparent 40%),
            linear-gradient(180deg, #1e3a8a 0%, #1e40af 40%, #1d4ed8 100%);
        color: #e5e7eb;
    }

    .daylight-site-header-card,
    .daylight-stats-section,
    .daylight-details-section,
    .daylight-benefits-section,
    .daylight-sidebar-card {
        background: rgba(31, 41, 55, 0.95);
        border-color: rgba(59, 130, 246, 0.2);
        color: #e5e7eb;
    }

    .daylight-breadcrumb-content {
        background: rgba(31, 41, 55, 0.9);
        border-color: rgba(59, 130, 246, 0.2);
        color: #e5e7eb;
    }

    .daylight-site-title,
    .daylight-section-title,
    .daylight-card-title {
        color: #f9fafb;
    }

    .daylight-site-description,
    .daylight-benefit-content p {
        color: #d1d5db;
    }
}


.daylight-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #007bff;
    width: 100%;
    overflow: hidden;
}

.daylight-loading i {
    font-size: 24px;
    animation: daylight-spin 1s linear infinite;
}


.daylight-error {
    text-align: center;
    padding: 40px 20px;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(220, 53, 69, 0.2);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.daylight-error i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.daylight-error h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #dc3545;
    word-break: break-all;
}

.daylight-error p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    word-break: break-all;
}


.daylight-site-container,
.daylight-site-container * {
    max-width: 1200px !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}


.daylight-domain-link,
.daylight-share-url,
.daylight-detail-value[title*="http"],
.daylight-detail-value[title*="www"] {
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    hyphens: none !important;
}
