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

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

body {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Container and content */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Taxi image section */
.taxi-wrapper {
    animation: fadeInZoom 0.7s ease-out forwards;
}

.taxi-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Heading section */
.heading-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInZoom 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.divider {
    width: 6rem;
    height: 0.25rem;
    background-color: rgba(26, 26, 26, 0.3);
    margin: 0 auto;
    border-radius: 0.25rem;
}

/* Message section */
.message-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInZoom 0.7s ease-out 0.4s forwards;
    opacity: 0;
}

.subtitle {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
}

.description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

/* Decorative dots */
.decorative-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 2rem;
    animation: fadeIn 0.7s ease-out 0.6s forwards;
    opacity: 0;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.4);
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    background-color: rgba(26, 26, 26, 0.6);
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    background-color: rgba(26, 26, 26, 0.4);
    animation-delay: 0.4s;
}

/* Animations */
@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Confetti animation */
.confetti {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation: fall 3s linear forwards;
    z-index: 9999;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        gap: 1.5rem;
    }

    .heading-section {
        gap: 1rem;
    }

    .message-section {
        gap: 0.75rem;
    }

    .divider {
        width: 4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        gap: 1rem;
    }

    .heading-section {
        gap: 0.75rem;
    }

    .divider {
        width: 3rem;
    }
}
