:root {
    --asphalt: #2D2D2D;
    --race-red: #FF0000;
    --silver: #E0E0E0;
    --carbon: #111111;
    
    --font-race: 'Racing Sans One', cursive;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--carbon);
    color: var(--silver);
    font-family: var(--font-body);
    line-height: 1.5;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.stream-header { padding: 20px 0; background: rgba(17,17,17,0.95); border-bottom: 2px solid var(--race-red); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-race); font-size: 1.8rem; color: white; letter-spacing: 1px; font-style: italic; }
.red { color: var(--race-red); }

.speed-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.speed-nav a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; font-style: italic; }
.speed-nav a:hover, .speed-nav a.active { color: var(--race-red); }

.btn-red { background: var(--race-red); color: white !important; padding: 10px 25px; transform: skewX(-15deg); display: inline-block; font-weight: bold; border: 2px solid var(--race-red); }
.btn-red:hover { background: transparent; color: var(--race-red) !important; }

/* Mobile Menu */
.menu-trigger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-trigger span { width: 30px; height: 3px; background: var(--race-red); transform: skewX(-15deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--carbon); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.3s; border-left: 5px solid var(--race-red); }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; color: var(--race-red); cursor: pointer; }
.m-links a { font-family: var(--font-race); font-size: 2.5rem; margin: 10px 0; color: white; font-style: italic; }
.m-links a:hover { color: var(--race-red); }

/* Hero */
.hero-speed { height: 80vh; background-size: cover; background-position: center; position: relative; }
.overlay { width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%); display: flex; align-items: center; }
.hero-content { max-width: 600px; padding-left: 20px; border-left: 5px solid var(--race-red); }
.speed-badge { background: var(--race-red); color: white; padding: 5px 15px; font-weight: bold; transform: skewX(-15deg); display: inline-block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-race); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; font-style: italic; text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; color: #ccc; }

.rental-bar { background: rgba(45,45,45,0.9); padding: 20px; border: 1px solid #444; border-radius: 4px; }
#rentalForm { display: flex; gap: 15px; flex-wrap: wrap; }
.input-wrap { flex: 1; min-width: 200px; }
.input-wrap label { display: block; font-size: 0.8rem; color: var(--race-red); font-weight: bold; margin-bottom: 5px; }
.input-wrap input, .input-wrap select { width: 100%; padding: 10px; background: #111; border: 1px solid #333; color: white; border-radius: 0; }
.btn-go { background: var(--race-red); border: none; color: white; font-weight: bold; padding: 10px 20px; cursor: pointer; font-style: italic; font-family: var(--font-race); font-size: 1.2rem; transform: skewX(-10deg); }
.btn-go:hover { background: white; color: var(--race-red); }

/* Fleet */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-race); font-size: 3rem; font-style: italic; color: white; }
.red-dash { width: 100px; height: 5px; background: var(--race-red); margin: 10px auto; transform: skewX(-20deg); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-card { background: var(--asphalt); border: 1px solid #444; transition: 0.3s; position: relative; overflow: hidden; }
.car-card:hover { border-color: var(--race-red); transform: translateY(-5px); }
.card-img { position: relative; height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); transition: 0.3s; }
.car-card:hover img { filter: grayscale(0%); }
.hp-tag { position: absolute; top: 10px; right: 10px; background: var(--race-red); color: white; padding: 5px 10px; font-weight: bold; font-style: italic; transform: skewX(-10deg); }
.card-text { padding: 25px; }
.card-text h3 { font-family: var(--font-race); font-size: 1.5rem; margin-bottom: 5px; font-style: italic; }
.price { font-size: 1.5rem; font-weight: bold; color: var(--race-red); margin: 15px 0; }
.price span { font-size: 0.8rem; color: #999; }
.link-arrow { font-weight: bold; color: white; font-style: italic; }
.link-arrow:hover { color: var(--race-red); }

/* About & Contact */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h1 { font-family: var(--font-race); font-size: 3.5rem; color: white; font-style: italic; margin-bottom: 20px; }
.spec-list { list-style: none; margin-top: 30px; border-left: 2px solid var(--race-red); padding-left: 20px; }
.spec-list li { margin-bottom: 10px; font-weight: bold; font-size: 1.1rem; }
.img-content img { width: 100%; border: 5px solid #333; }

.contact-box { max-width: 700px; margin: 0 auto; background: var(--asphalt); padding: 50px; border: 1px solid #444; box-shadow: 0 0 30px rgba(255,0,0,0.1); }
.contact-info { text-align: center; margin-bottom: 40px; }
.contact-info h2 { font-family: var(--font-race); font-style: italic; color: var(--race-red); }
.details { margin-top: 20px; color: #ccc; }
.speed-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.speed-form input, .speed-form select, .speed-form textarea { width: 100%; padding: 15px; background: #111; border: 1px solid #333; color: white; font-family: var(--font-body); border-radius: 0; }
.speed-form input:focus { border-color: var(--race-red); outline: none; }
.speed-form textarea { margin-bottom: 20px; }
.btn-submit { width: 100%; padding: 15px; background: var(--race-red); border: none; font-weight: bold; cursor: pointer; font-family: var(--font-race); font-size: 1.2rem; transform: skewX(-10deg); color: white; }
.btn-submit:hover { background: white; color: black; }

/* Testimonials & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--asphalt); padding: 30px; border-top: 4px solid #333; }
.review-card.highlight { border-top-color: var(--race-red); background: #333; }
.rating { color: var(--race-red); margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-style: italic; margin-bottom: 20px; color: #ddd; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--asphalt); padding: 50px; border-left: 5px solid var(--race-red); }
.legal-content h1 { font-family: var(--font-race); font-style: italic; }
.legal-content h3 { color: var(--race-red); margin-top: 30px; font-weight: bold; text-transform: uppercase; }

/* Footer */
.stream-footer { border-top: 2px solid var(--race-red); padding: 50px 0; margin-top: 80px; background: #000; text-align: center; }
.f-brand { font-family: var(--font-race); font-size: 2rem; color: white; margin-bottom: 20px; font-style: italic; }
.f-nav a { margin: 0 15px; color: #888; font-weight: bold; }
.f-nav a:hover { color: var(--race-red); }
.copy { margin-top: 30px; font-size: 0.8rem; color: #555; }

/* Cookie Banner */
.cookie-alert { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--race-red); color: white; padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; display: none; font-weight: bold; }
.cookie-alert.active { display: flex; animation: slideUp 0.3s; }
.cookie-alert button { background: black; color: white; border: none; padding: 5px 20px; font-family: var(--font-race); cursor: pointer; transform: skewX(-10deg); }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .speed-nav { display: none; }
    .menu-trigger { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .fleet-grid, .about-split, .review-grid, .speed-form .form-row { grid-template-columns: 1fr; }
    .rental-bar form { flex-direction: column; }
    .cookie-alert { flex-direction: column; text-align: center; }
}