:root {
    --color-bg: #030303;
    --color-text: #ffffff;
    --color-accent: #e5b874; /* Elegant gold/bronze */
    --color-muted: #a0a0a0;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% -10%, rgba(229, 184, 116, 0.08) 0%, rgba(3, 3, 3, 1) 60%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(ellipse at center, rgba(229, 184, 116, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2rem 0;
    margin-bottom: 2rem;
    margin-top: 5vh;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom right, #ffffff 30%, #e5b874 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 30px rgba(229, 184, 116, 0.15);
    line-height: 1.1;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 184, 116, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.status:hover {
    border-color: rgba(229, 184, 116, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent);
    animation: pulse 2s infinite ease-in-out;
}

.car-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.tesla-img {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9));
    mask-image: linear-gradient(to top, transparent 2%, black 30%);
    -webkit-mask-image: linear-gradient(to top, transparent 2%, black 30%);
    animation: float 8s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 20px var(--color-accent); }
    100% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes pulseGlow {
    from { opacity: 0.5; filter: blur(50px); transform: translateX(-50%) scale(1); }
    to { opacity: 0.8; filter: blur(60px); transform: translateX(-50%) scale(1.1); }
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)); }
    50% { transform: translateY(-15px) scale(1.01); filter: drop-shadow(0 45px 60px rgba(0,0,0,0.7)); }
    100% { transform: translateY(0px) scale(1); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; filter: blur(10px); }
    to { opacity: 1; filter: blur(0); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.2s; }

@media (max-width: 768px) {
    .content { padding-top: 2rem; }
    .car-container { padding: 0 1rem; }
    .tesla-img { mask-image: linear-gradient(to top, transparent 5%, black 40%); -webkit-mask-image: linear-gradient(to top, transparent 5%, black 40%); }
}
