/* ==========================================================================
   404 Hata Sayfası — Modüler Sayfa Stilleri (TERFIUI v5)
   ========================================================================== */

/* Sayfa Gövdesi — site.css .gd-page-body ana omurgasına bağlı */

/* Ana Kart */
.gd-e404-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 60px 48px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1;
}

/* Dekoratif Arka Plan Aydınlatması */
.gd-e404-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: rgba(67, 97, 238, 0.05);
    filter: blur(70px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* 404 Numara Bloğu */
.gd-e404-number-wrap {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.gd-e404-number {
    font-size: clamp(90px, 16vw, 154px);
    font-weight: 900;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.85;
    letter-spacing: -5px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* Animasyonlu Uçan İkon */
.gd-e404-float-icon {
    position: absolute;
    top: -18px;
    right: -50px;
    animation: gd404Float 3s ease-in-out infinite;
}

@keyframes gd404Float {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-15px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Başlık */
.gd-e404-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Açıklama */
.gd-e404-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

/* Aksiyon Butonları */
.gd-e404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.gd-e404-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 14px;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gd-e404-btn:hover {
    transform: translateY(-3px);
}

/* URL Bilgi Kutusu */
.gd-e404-url-box {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gd-e404-url-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #94a3b8;
    flex-wrap: wrap;
    justify-content: center;
}

.gd-e404-url-code {
    display: inline-block;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #4361ee;
    font-weight: 600;
    font-size: 0.82rem;
    word-break: break-all;
}

/* Responsive */
@media (max-width: 768px) {
    .gd-e404-card {
        padding: 40px 24px;
    }

    .gd-e404-float-icon {
        right: -30px;
        top: -10px;
    }

    .gd-e404-float-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .gd-e404-card {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .gd-e404-actions {
        flex-direction: column;
        width: 100%;
    }

    .gd-e404-btn {
        width: 100%;
        justify-content: center;
    }
}
