/* Extracted from about.html - block 1 */
.placeholder-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.placeholder-content {
    text-align: center;
    max-width: 500px;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.placeholder-title {
    font-family: 'Apex', 'Apex-Black', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 3px;
}

.placeholder-subtitle {
    font-family: 'Apex', 'Apex-Black', sans-serif;
    font-size: 1.25rem;
    color: #8b5cf6;
    margin: 0 0 1.5rem 0;
    letter-spacing: 2px;
}

.placeholder-description {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.placeholder-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.placeholder-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}