.site-wrapper {
    padding: 20px 0;
}

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

.layout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

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

.hero-card,
.details-card,
.description-card,
.benefits-card,
.tools-card,
.related-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-card {
    margin-bottom: 0;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.site-logo2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid #74b9ff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.site-logo2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
    border-color: #0984e3;
}

.site-logo2 i {
    font-size: 30px;
    color: #74b9ff;
}

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

.site-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-break: break-word;
}

.site-name i {
    color: #74b9ff;
    margin-right: 6px;
    font-size: 20px;
}

.action-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.visit-btn,
.like-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 100px;
    white-space: nowrap;
}

.visit-btn {
    background: #74b9ff;
    color: white;
    border: 2px solid #74b9ff;
}

.visit-btn:hover {
    background: #0984e3;
    border-color: #0984e3;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.4);
    color: white;
}

.like-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.like-btn:hover {
    background: rgba(116, 185, 255, 0.3);
    border-color: #74b9ff;
    transform: translateY(-1px);
}

.like-btn.praised {
    background: #74b9ff;
    border-color: #74b9ff;
    color: white;
}

.stats-panel {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    background: rgba(116, 185, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
    border-color: rgba(116, 185, 255, 0.3);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.stat-value {
    display: block;
    color: #74b9ff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.2) 0%, rgba(116, 185, 255, 0.1) 100%);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.card-content {
    padding: 20px;
}

.details-grid {
    padding: 20px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 5px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-key {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 3px;
}

.detail-val {
    color: white;
    font-weight: 500;
    font-size: 13px;
    width: 100%;
    word-break: break-all;
}

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

.domain-link:hover {
    color: #0984e3;
}

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

.rating-img {
    height: 18px;
    width: auto;
}

.description-text {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

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

.benefit-item {
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #74b9ff;
    font-size: 13px;
    color: white;
    line-height: 1.5;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    background: rgba(116, 185, 255, 0.2);
    transform: translateX(3px);
}

.benefit-item strong {
    color: #74b9ff;
    font-weight: 600;
    margin-right: 6px;
}

.tools-list {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tool-link {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    font-size: 12px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tool-link:hover {
    background: #74b9ff;
    color: white;
    border-color: #74b9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(116, 185, 255, 0.3);
}

.related-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.related-item:hover {
    background: rgba(116, 185, 255, 0.2);
    transform: translateX(3px);
    border-color: rgba(116, 185, 255, 0.3);
    color: white;
}

.related-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-name {
    font-size: 12px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

@media (min-width: 1025px) {
    .layout-grid {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 30px;
        align-items: start;
    }

    .sidebar-column {
        position: sticky;
        top: 90px;
    }

    .hero-header {
        padding: 30px;
        gap: 25px;
        flex-wrap: nowrap;
    }

    .site-logo2 {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }

    .site-logo2 i {
        font-size: 40px;
    }

    .site-name {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .site-name i {
        font-size: 26px;
        margin-right: 8px;
    }

    .action-group {
        gap: 15px;
    }

    .visit-btn,
    .like-btn {
        padding: 12px 20px;
        font-size: 14px;
        flex: none;
        min-width: auto;
    }

    .stats-panel {
        padding: 25px 30px;
    }

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

    .stat-item {
        padding: 20px;
    }

    .stat-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .stat-value {
        font-size: 22px;
    }

    .card-header {
        padding: 20px 25px 15px;
    }

    .card-title {
        font-size: 18px;
        text-align: left;
    }

    .card-content,
    .details-grid {
        padding: 25px;
    }

    .detail-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
    }

    .detail-key {
        font-size: 14px;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .detail-val {
        font-size: 14px;
        text-align: right;
    }

    .description-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .benefit-item {
        font-size: 14px;
        padding: 15px;
        margin-bottom: 15px;
        border-left: 4px solid #74b9ff;
    }

    .benefit-item:hover {
        transform: translateX(5px);
    }

    .tools-list {
        padding: 20px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .tool-link {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 20px;
    }

    .related-list {
        padding: 20px;
        gap: 12px;
    }

    .related-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .related-icon {
        width: 24px;
        height: 24px;
    }

    .related-name {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .page-container {
        padding: 0 20px;
    }

    .stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .site-wrapper {
        padding: 15px 0;
    }

    .hero-header {
        padding: 15px;
        gap: 15px;
    }

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

    .site-logo2 i {
        font-size: 24px;
    }

    .site-name {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .site-name i {
        font-size: 18px;
        margin-right: 4px;
    }

    .action-group {
        flex-direction: column;
        gap: 8px;
    }

    .visit-btn,
    .like-btn {
        padding: 12px;
        font-size: 14px;
    }

    .stats-panel {
        padding: 15px;
    }

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

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

    .stat-value {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

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

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

    .card-content,
    .details-grid {
        padding: 15px;
    }

    .detail-row {
        padding: 10px 0;
    }

    .detail-key,
    .detail-val {
        font-size: 12px;
    }

    .description-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .benefit-item {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .tools-list {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .tool-link {
        padding: 12px;
        font-size: 13px;
    }

    .related-list {
        padding: 12px;
        gap: 8px;
    }

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

    .related-icon {
        width: 18px;
        height: 18px;
    }

    .related-name {
        font-size: 11px;
    }
}
