/* ============================================
   MISC PAGES STYLES (404, About, Details)
   CocBase.Net
   ============================================ */

/* 1. 404 Error Page */
.error-404-page {
    min-height: 70vh;
    padding: 80px 0;
}

.error-404-text {
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.error-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.error-message {
    max-width: 600px;
    margin: 0 auto;
}

.blog-suggestion-card,
.quick-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease;
}

.blog-suggestion-card:hover,
.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-img-wrapper {
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-suggestion-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.error-actions .btn {
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .error-404-text {
        font-size: 100px;
    }
    .error-subtitle {
        font-size: 1.2rem;
    }
    .error-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* 2. About Page */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* 3. Clan & Player Details */
.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #e9ecef;
    white-space: nowrap;
}

.hero-card {
    border-radius: 12px !important;
    transition: transform 0.2s;
}

.hero-card:hover {
    transform: scale(1.05);
}

.troop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.troop-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.troop-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.troop-level-circle {
    width: 35px;
    height: 35px;
    background: #4e89e8;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
