:root {
    --primary: #f9004d; /* vibrant red-pink for motorsport feel */
    --primary-dark: #c0003b;
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(15, 15, 15, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden; /* keeping it a single unscrollable landing page for impact */
}

/* Background Setup */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05); /* Slight scale for animation */
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.5) 50%, 
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

.ambient-light {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,0,77,0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: 2;
    animation: floatLight 10s infinite alternate;
}

@keyframes floatLight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10vw, 10vh); }
}

/* Content Layout */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
}

.glitch {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.description strong, .description em {
    color: var(--text-main);
    font-weight: 600;
    font-style: normal;
}

/* Sale Card Glassmorphism */
.sale-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    width: 100%;
    max-width: 550px;
    perspective: 1000px;
}

.sale-card:hover {
    border-color: rgba(249,0,77,0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(249,0,77,0.1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.sale-card:hover .card-glow {
    left: 150%;
}

.card-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-content p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    gap: 12px;
    overflow: hidden;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 20px rgba(249,0,77,0.4);
    transform: scale(1.02);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: translateX(5px);
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info span {
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    padding-bottom: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: fadeIn 1s ease-out 1s both;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 768px) {
    body, html {
        overflow-y: auto;
    }
    .hero-container {
        height: auto;
        min-height: 100vh;
    }
    .main-content {
        padding: 4rem 0;
    }
    .glitch {
        font-size: 2.5rem;
    }
}
