/* Website Details Page Styles */
.details-container {
    margin: 2rem 5%;
}
.popular-search-terms { 
    margin: 3rem 0; 
}
.search-terms-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-top: 1.5rem; 
}
.search-term { 
    background-color: #2a2a2a; 
    color: var(--light-text); 
    border-radius: 20px; 
    padding: 8px 15px; 
    font-size: 0.9rem; 
    transition: all 0.3s; 
    text-decoration: none; 
}
.search-term:hover { 
    background-color: var(--primary-color); 
    color: white; 
}

/* Crypto Icons - Not explicitly used in the template yet, but kept for future proofing */
.crypto-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.crypto-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}
.crypto-icon:hover {
    transform: scale(1.1);
}
/* Adjust meta-item alignment */
.meta-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
/* Section titles with icons */
.mirrors-section h2,
.features-section h2,
.related-sites h2,
.faq-section h2 { 
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 0.5rem;
}
.mirrors-section h2 i,
.features-section h2 i,
.related-sites h2 i,
.faq-section h2 i { 
    color: var(--primary-color);
}
/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}
.breadcrumbs a {
    color: var(--primary-color);
    transition: color 0.3s;
}
.breadcrumbs a:hover {
    color: var(--primary-light);
}
/* Site Header */
.site-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #1c1c1c, #242424);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.site-logo {
    flex: 0 0 150px;
    height: 150px;
    background-color: #2a2a2a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; 
}
.site-logo img {
    max-width: 80%;
    max-height: 80%;
}
.site-info {
    flex: 1;
    min-width: 0; 
}
.site-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}
.site-description {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.6;
}
.site-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.meta-item {
    display: flex;
    gap: 0.5rem;
}
.meta-item .label {
    color: var(--gray-text);
    font-weight: 500;
}
/* Mirrors Section */
.mirrors-section {
    margin: 3rem 0;
}
.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mirror-container {
    background: linear-gradient(to right, #1e1e1e, #252525);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.mirror-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
}
.mirror-header h3 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0;
}
.mirror-link-container {
    display: flex;
    padding: 1rem;
}
.mirror-link {
    flex: 1;
    background-color: #2a2a2a;
    border: none;
    padding: 0.75rem;
    border-radius: 4px; 
    color: var(--primary-light);
    font-size: 1rem;
    font-family: monospace;
    overflow-x: auto; 
}
.mirror-link:read-only {
    border-radius: 4px 0 0 4px; 
}
.copy-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0 1rem;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0; 
}
.copy-btn:hover {
    background-color: var(--primary-dark);
}
.copy-btn.copied {
    background-color: var(--success-color);
}
/* Features Section (Product Highlights) */
.features-section {
    margin: 3rem 0;
}
/* FIX: 3x2 Grid for highlights */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.feature-row {
    grid-column: span 1;
    display: block;
    padding: 0;
    margin: 0;
}
.feature-item {
    background: linear-gradient(to bottom, #232323, #1a1a1a);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem; 
}
.feature-item h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin: 0; 
}
.feature-status {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0; 
}
.feature-status.yes {
    color: var(--success-color);
}
.feature-status.no {
    color: var(--danger-color);
}
/* FAQ Section Styles (Static Display) */
.faq-container { 
    border-top: 1px solid #333; 
}
.faq-item { 
    padding: 15px 0; 
    border-bottom: 1px solid #333; 
}
.faq-question { 
    display: block; 
    font-size: 1.1rem; 
    font-weight: bold; 
    color: var(--primary-color); 
    margin-bottom: 5px;
    cursor: default; 
    width: 100%;
}
.faq-answer {
    padding: 5px 0 0 15px; 
}
.faq-answer p { 
    margin: 0; 
    opacity: 0.8; 
}
/* Related Sites */
.related-sites {
    margin: 3rem 0;
}
.related-sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
}
.related-site-card {
    background: linear-gradient(to bottom, #222, #1a1a1a);
    border-radius: 8px;
    padding: 2rem 1.5rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    text-decoration: none; 
    color: inherit; 
}
.related-site-card:hover {
    transform: translateY(-5px);
}
.related-site-card img {
    width: 80px; height: 80px;
    border-radius: 50%;
    background-color: #1a1a1a;
    padding: 10px;
    margin-bottom: 1rem; 
    object-fit: contain; 
}
.related-site-card h3 {
    color: var(--light-text);
    font-size: 1.2rem; 
    margin: 0; 
}
/* Return Home Button Styles */
.return-home-container {
    text-align: center; 
    margin-top: 2.5rem; 
}
.return-home-btn {
    display: inline-block; 
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none; 
}
.return-home-btn i {
    margin-right: 0.5rem;
}
.return-home-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 125, 0, 0.4);
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .details-container {
        margin: 1.5rem 2%; 
    }
    .site-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem; 
    }
    .site-logo { width: 120px; height: 120px; }
    .site-meta { justify-content: center; gap: 1rem; }
    .site-info h1 { font-size: 2rem; }
    .site-description { font-size: 1rem; }
    .mirror-link-container { padding: 0.75rem; }
    .mirror-link { font-size: 0.9rem; }
    /* Mobile specific fixes */
    .features-list { grid-template-columns: 1fr; }
    .feature-item h3 { font-size: 1.1rem; }
    .related-sites-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .mirrors-section h2, .features-section h2, .related-sites h2, .faq-section h2 {
        font-size: 1.5rem; 
    }
}