.site-main {
    padding: 20px;
    background: #b855d4;
}

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

.website-profile {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(184, 85, 212, 0.3);
    overflow: hidden;
    border: 1px solid #b855d4;
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    border-bottom: 1px solid rgba(184, 85, 212, 0.3);
}

.website-logo {
    width: 100px;
    height: 100px;
    background: rgba(184, 85, 212, 0.2);
    border-radius: 12px;
    border: 2px solid #b855d4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.website-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 85, 212, 0.4);
}

.website-logo i {
    font-size: 48px;
    color: #b855d4;
}

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

.website-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.website-title i {
    color: #b855d4;
    margin-right: 8px;
    font-size: 26px;
}

.website-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, #b855d4 0%, #d084ff 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 85, 212, 0.4);
}

.secondary-btn {
    background: rgba(184, 85, 212, 0.2);
    color: #ffffff;
    border: 2px solid #b855d4;
}

.secondary-btn:hover {
    background: #b855d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 85, 212, 0.4);
}

.secondary-btn.praised {
    background: #b855d4;
    border-color: #d084ff;
}

.website-metrics {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(184, 85, 212, 0.3);
}

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

.metric-card {
    background: rgba(184, 85, 212, 0.1);
    border: 1px solid rgba(184, 85, 212, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(184, 85, 212, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 85, 212, 0.3);
}

.metric-title {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.metric-number {
    display: block;
    color: #b855d4;
    font-size: 24px;
    font-weight: 700;
}

.website-info {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(184, 85, 212, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(184, 85, 212, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 14px;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.domain-text {
    color: #b855d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.domain-text:hover {
    color: #d084ff;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
}

.star-image {
    height: 20px;
    width: auto;
}

.utility-tools {
    padding: 25px 30px;
}

.tools-title {
    font-size: 18px;
    font-weight: 600;
    color: #b855d4;
    margin-bottom: 20px;
    text-align: center;
}

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

.tool-item {
    padding: 12px 16px;
    background: rgba(184, 85, 212, 0.1);
    border: 1px solid rgba(184, 85, 212, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tool-item:hover {
    background: #b855d4;
    color: #ffffff;
    border-color: #b855d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 85, 212, 0.3);
}

.content-section {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(184, 85, 212, 0.2);
    border: 1px solid #b855d4;
    margin-bottom: 25px;
    overflow: hidden;
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, #b855d4 0%, #d084ff 100%);
    border-bottom: 1px solid rgba(184, 85, 212, 0.3);
}

.section-content {
    padding: 25px 30px;
}

.website-description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(184, 85, 212, 0.1);
    border-radius: 8px;
    border-left: 4px solid #b855d4;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(184, 85, 212, 0.2);
    transform: translateX(5px);
}

.advantage-item strong {
    color: #b855d4;
    font-weight: 600;
    margin-right: 8px;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 25px 30px;
}

.recommendation-item {
    background: rgba(184, 85, 212, 0.1);
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(184, 85, 212, 0.3);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.recommendation-item:hover {
    background: rgba(184, 85, 212, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 85, 212, 0.3);
    border-color: #b855d4;
}

.recommendation-icon {
    display: block;
    margin-bottom: 10px;
}

.recommendation-icon i {
    font-size: 32px;
    color: #b855d4;
}

.recommendation-title {
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

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

    .site-container {
        padding: 0;
    }

    .website-profile {
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .website-logo {
        width: 80px;
        height: 80px;
    }

    .website-logo i {
        font-size: 40px;
    }

    .website-details {
        width: 100%;
    }

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

    .website-actions {
        justify-content: center;
    }

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

    .website-metrics {
        padding: 20px;
    }

    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .metric-card {
        padding: 15px;
    }

    .metric-number {
        font-size: 20px;
    }

    .website-info {
        padding: 20px;
    }

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

    .info-item {
        padding: 12px 0;
        font-size: 13px;
    }

    .utility-tools {
        padding: 20px;
    }

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

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

    .section-heading {
        font-size: 18px;
        padding: 15px 20px;
        text-align: center;
    }

    .section-content {
        padding: 20px;
    }

    .website-description {
        font-size: 14px;
    }

    .advantage-item {
        font-size: 13px;
        padding: 12px;
        margin-bottom: 12px;
    }

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

    .recommendation-item {
        padding: 15px 10px;
    }

    .recommendation-icon i {
        font-size: 28px;
    }

    .recommendation-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .metrics-container {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
