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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 120, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #e8e8e8, #c0c0c0, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffd700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(145deg, rgba(200, 200, 200, 0.15), rgba(150, 150, 150, 0.08));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    border: 1px solid rgba(180, 180, 180, 0.25);
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(220, 220, 220, 0.2);
}

.time-unit:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(230, 230, 230, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.time-label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}

.target-date {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.target-date p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.target-date span {
    font-weight: bold;
    color: #ffd700;
}

.vehicle-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.vehicle-detail {
    background: linear-gradient(145deg, rgba(200, 200, 200, 0.12), rgba(150, 150, 150, 0.06));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(180, 180, 180, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.vehicle-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
}

.ship-tracking {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(200, 200, 200, 0.12), rgba(150, 150, 150, 0.06));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(180, 180, 180, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.tracking-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ship-info {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
}

.track-ship-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.track-ship-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .time-label {
        font-size: 0.9rem;
    }
    
    .vehicle-info {
        gap: 1rem;
    }
    
    .vehicle-detail {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .ship-tracking {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .tracking-title {
        font-size: 1.5rem;
    }
    
    .ship-info {
        font-size: 0.9rem;
    }
    
    .track-ship-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .target-date {
        padding: 0.8rem 1rem;
    }
    
    .target-date p {
        font-size: 1rem;
    }
    
    .vehicle-info {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .vehicle-detail {
        min-width: 140px;
    }
    
    .ship-tracking {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .tracking-title {
        font-size: 1.3rem;
    }
    
    .ship-info {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .track-ship-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}