/* Link Expired Page Styles - Extends hero-section from site.css */

/* Custom error content styling within existing hero-section */
.hero-section .error-content {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.hero-section .error-icon svg {
    width: 80px;
    height: 80px;
    color: #dc3545;
    margin-bottom: 2rem;
}

.hero-section .error-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .error-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-section .error-link {
    color: #fbbf24;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    word-break: break-all;
    border: 1px solid rgba(251, 191, 36, 0.3);
    line-height: 1.4;
}

.hero-section .error-details {
    margin-bottom: 2.5rem;
}

.hero-section .details-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section .details-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.hero-section .error-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-section .error-reasons li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.hero-section .error-reasons li:before {
    content: "•";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-section .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.hero-section .btn-primary {
    background-color: #3b82f6;
    color: white;
}

.hero-section .btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.hero-section .btn-secondary {
    background-color: rgba(249, 250, 251, 0.9);
    color: #374151;
    border: 1px solid rgba(209, 213, 219, 0.8);
    backdrop-filter: blur(10px);
}

.hero-section .btn-secondary:hover {
    background-color: rgba(243, 244, 246, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-icon {
    width: 16px;
    height: 16px;
}

.hero-section .error-help {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section .error-help p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.hero-section .error-help a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-section .error-help a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fcd34d;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .error-icon svg {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .hero-section .error-title {
        font-size: 2rem;
    }

    .hero-section .error-details {
        margin-bottom: 2rem;
    }

    .hero-section .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-section .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-section .details-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section .error-title {
        font-size: 1.75rem;
    }

    .hero-section .error-subtitle {
        font-size: 1rem;
    }

    .hero-section .error-link {
        font-size: 0.9rem;
        padding: 0.1rem 0.3rem;
        display: inline-block;
        margin: 0.1rem 0;
    }

    .hero-section .details-card {
        padding: 0.75rem;
    }
}