﻿/* Genel yapı */
.notfound-container {
    background-color: #111;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* 404 rakamı */
.notfound-code {
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: 8px;
    animation: pulse 2s infinite;
}

/* Alt başlık */
.notfound-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Açıklama metni */
.notfound-text {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
}

/* Buton */
.notfound-btn {
    margin-top: 2rem;
    padding: 12px 24px;
    background-color: #ff3c00;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .notfound-btn:hover {
        background-color: #ff5522;
    }

/* İkon */
.notfound-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Animasyonlar */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.notfound-icon {
    font-size: 72px;
    color: #ff3c00;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.notfound-container a {
    color: #ccc;
}