.page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.content-wrapper {
    background: #2d2d2d;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #404040;
}

.primary-section {
    padding: 25px;
    background: #2d2d2d;
}

.overview-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.site-logo2 {
    width: 90px;
    height: 90px;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #555;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.website-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.website-title i {
    color: #4a9eff;
    margin-right: 6px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #4a9eff;
}

.btn-secondary {
    background: #52c41a;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn.liked {
    background: #ff4d4f;
}

.data-overview {
    margin-bottom: 30px;
    border-top: 1px solid #404040;
    padding-top: 20px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.data-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #404040;
}

.data-cell:last-child {
    border-bottom: none;
}

.cell-label {
    color: #b0b0b0;
    font-weight: 500;
}

.cell-number {
    color: #ffffff;
    font-weight: 600;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.star-active {
    color: #faad14;
}

.star-inactive {
    color: #555;
}

.domain-text {
    color: #4a9eff;
    text-decoration: none;
}

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

.utility-tools {
    margin-bottom: 25px;
    border-top: 1px solid #404040;
    padding-top: 20px;
}

.tools-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.utility-item {
    padding: 8px 12px;
    background: #404040;
    border: 1px solid #555;
    border-radius: 20px;
    font-size: 13px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.utility-item:hover {
    background: #4a9eff;
    color: #fff;
    border-color: #4a9eff;
}

.content-block {
    margin-bottom: 25px;
    padding: 0 25px;
}

.block-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #4a9eff;
    display: inline-block;
}

.block-content {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.block-content p {
    margin-bottom: 10px;
}

.block-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-content li {
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
    font-size: 14px;
    color: #e0e0e0;
}

.block-content li strong {
    color: #b0b0b0;
    font-weight: 500;
    margin-right: 8px;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.recommendation-item {
    background: #404040;
    padding: 15px 10px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #555;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.2s ease;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5em;
    word-wrap: break-word;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #4a9eff;
    border-color: #4a9eff;
    background: #2d2d2d;
}

.recommendation-item i {
    display: block;
    font-size: 24px;
    color: #4a9eff;
    margin-bottom: 6px;
}

.recommendation-item div {
    font-size: 12px;
}

@media (max-width: 768px) {
    .page-container {
        margin: 10px auto;
        padding: 0 10px;
    }

    .content-wrapper {
        border-radius: 6px;
    }

    .primary-section {
        padding: 15px;
    }

    .overview-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .site-logo2 {
        width: 70px;
        height: 70px;
    }

    .site-details {
        width: 100%;
    }

    .website-title {
        font-size: 16px;
        text-align: center;
        margin-bottom: 12px;
    }

    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        flex: 1;
        min-width: 100px;
        justify-content: center;
        font-size: 13px;
        padding: 10px 14px;
    }

    .data-overview {
        padding-top: 15px;
        margin-bottom: 20px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .data-cell {
        padding: 10px 0;
        font-size: 13px;
    }

    .utility-tools {
        padding-top: 15px;
        margin-bottom: 20px;
    }

    .tools-grid {
        gap: 6px;
    }

    .utility-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .content-block {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .block-title {
        font-size: 15px;
        text-align: center;
        width: 100%;
    }

    .block-content {
        font-size: 13px;
    }

    .recommendation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .recommendation-item {
        padding: 12px 8px;
        font-size: 11px;
    }

    .recommendation-item i {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

.site-logo2 i {
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #4a9eff;
}

body {
    background: #1a1a1a;
    color: #e0e0e0;
}