/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0d1b2a 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Yildizli Arka Plan */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 50px, #fff, transparent),
        radial-gradient(2px 2px at 420px 180px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 500px 90px, #fff, transparent),
        radial-gradient(2px 2px at 580px 130px, rgba(255,255,255,0.9), transparent);
    background-size: 600px 200px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.5;
}

/* Yol */
.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

.road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #f0a500 0px,
        #f0a500 40px,
        transparent 40px,
        transparent 80px
    );
    animation: roadMove 1s linear infinite;
}

.road::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 80px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

/* TIR */
.truck-container {
    position: absolute;
    bottom: 25px;
    animation: truckDrive 12s linear infinite;
}

.truck {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.truck-container-2 {
    position: absolute;
    bottom: 25px;
    animation: truckDrive2 15s linear infinite;
    animation-delay: 3s;
    transform: scaleX(-1);
    opacity: 0.4;
}

/* Dunya Haritasi */
.world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    opacity: 0.03;
    z-index: 1;
}

/* Ana Icerik */
.container {
    text-align: center;
    padding: 20px;
    max-width: 700px;
    width: 100%;
    z-index: 10;
    position: relative;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f0a500 0%, #ff6b35 50%, #f0a500 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.85rem;
    color: #f0a500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.status {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(240, 165, 0, 0.5);
}

.message {
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Ikonlar */
.icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 55px;
    height: 55px;
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid #f0a500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon svg {
    width: 26px;
    height: 26px;
    fill: #f0a500;
}

.icon-box:nth-child(2) .icon {
    animation-delay: 0.3s;
}

.icon-box:nth-child(3) .icon {
    animation-delay: 0.6s;
}

.icon-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 25px;
    padding: 0 20px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #f0a500, #ff6b35, #f0a500);
    background-size: 200% auto;
    border-radius: 3px;
    animation: progressShine 2s linear infinite;
}

.footer {
    font-size: 0.8rem;
    color: #444;
}

/* Animasyonlar */
@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes roadMove {
    from { transform: translateX(0); }
    to { transform: translateX(-80px); }
}

@keyframes truckDrive {
    0% { left: -400px; }
    100% { left: 110%; }
}

@keyframes truckDrive2 {
    0% { right: -400px; }
    100% { right: 110%; }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(240, 165, 0, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 10px rgba(240, 165, 0, 0.2);
    }
}

@keyframes progressShine {
    to { background-position: 200% center; }
}

/* Tablet */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .status {
        font-size: 1.4rem;
    }

    .message {
        font-size: 0.9rem;
    }

    .icons {
        gap: 20px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .icon svg {
        width: 22px;
        height: 22px;
    }

    .truck {
        width: 220px;
    }

    .road {
        height: 80px;
    }

    .road::after {
        height: 60px;
    }

    .truck-container,
    .truck-container-2 {
        bottom: 18px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    .logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .status {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .message {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .icons {
        gap: 15px;
        margin-bottom: 20px;
    }

    .icon {
        width: 45px;
        height: 45px;
    }

    .icon svg {
        width: 20px;
        height: 20px;
    }

    .icon-label {
        font-size: 0.65rem;
    }

    .progress-container {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .progress-text {
        font-size: 0.75rem;
    }

    .footer {
        font-size: 0.7rem;
    }

    .truck {
        width: 180px;
    }

    .road {
        height: 70px;
    }

    .road::after {
        height: 50px;
    }

    .truck-container,
    .truck-container-2 {
        bottom: 15px;
    }
}

/* Kucuk Ekranlar */
@media (max-width: 360px) {
    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .status {
        font-size: 1rem;
    }

    .message {
        font-size: 0.75rem;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .icon svg {
        width: 18px;
        height: 18px;
    }

    .truck {
        width: 150px;
    }
}
