body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 1.5em 2em;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8em 1.2em;
    border-radius: 2px;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid transparent;
}

nav a:hover {
    color: #fff;
    background-color: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

nav a.active {
    background-color: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    padding: 2em;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.5em;
    margin: 0;
    text-shadow:
        3px 3px 6px #000,
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #fff, #ff0000, #fff);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes textShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Mobile responsiveness for hero video */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-overlay {
        padding: 1.5em;
        margin: 1em;
    }

    /* Disable video autoplay on mobile to save bandwidth */
    .hero-video {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-overlay {
        padding: 1em;
        margin: 0.5em;
    }
}

section {
    padding: 4em 2em;
    max-width: 1200px;
    margin: auto;
}

section h2 {
    color: #ff0000;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 1.5em;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #ff0000;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

th, td {
    border: 1px solid #333;
    padding: 0.5em;
    text-align: left;
}

th {
    background-color: #222;
}

form {
    display: grid;
    gap: 1em;
    max-width: 600px;
    margin: auto;
}

input, textarea, button {
    padding: 0.5em;
    border: none;
    border-radius: 4px;
}

button {
    background-color: #ff0000;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Contact form enhancements */
form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2em;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75em;
    border: 2px solid #333;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 1em;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    background: #fff;
}

form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

form button {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 1em 2em;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form button:hover {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Status messages */
.success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 2em;
    border-left: 4px solid #155724;
}

.error-message {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 2em;
    border-left: 4px solid #721c24;
}

/* Press Page Styling */
.featured-press {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2em;
    margin: 2em 0;
    position: relative;
    overflow: hidden;
}

.featured-press::before {
    content: '🏆 FEATURED';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 0.5em 1em;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-section {
    margin: 3em 0;
    padding: 2em 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.press-section h3 {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 1.5em;
    position: relative;
    display: inline-block;
}

.press-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.press-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.press-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.press-item:hover::before {
    left: 100%;
}

.press-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.press-item.featured {
    border: 2px solid rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.press-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.press-type {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-date {
    color: #ccc;
    font-size: 0.9em;
    font-style: italic;
}

.press-item h4 {
    margin: 0 0 1em 0;
    line-height: 1.3;
}

.press-item h4 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-item h4 a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.press-item p {
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 1em;
    font-size: 0.95em;
}

.press-meta {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.publication {
    color: #ff0000;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Press Kit Section */
.press-kit-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 0, 0, 0.05) 100%);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2em;
    margin: 3em 0;
}

.press-kit-section h3 {
    color: #ff0000;
    text-align: center;
    margin-bottom: 2em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.press-kit-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.press-kit-item {
    text-align: center;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.press-kit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
}

.press-kit-item h4 {
    color: #fff;
    margin: 1em 0 0.5em 0;
    font-size: 1.1em;
}

.press-kit-item p {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 1.5em;
}

.press-kit-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.press-kit-link:hover {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Press Contact Section */
.press-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 2em;
    text-align: center;
    margin: 3em 0;
}

.press-contact h3 {
    color: #ff0000;
    margin-bottom: 1em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.press-contact p {
    color: #ddd;
    font-size: 1.1em;
    line-height: 1.5;
}

.press-contact a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.press-contact a:hover {
    color: #fff;
    border-bottom-color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Responsive Design for Press Page */
@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .press-kit-content {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .press-item {
        padding: 1em;
    }

    .featured-press::before {
        font-size: 0.7em;
        padding: 0.3em 0.8em;
    }
}

footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
    padding: 3em 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: #ccc;
    font-size: 0.9em;
    margin: 0;
}

/* Racing statistics styling */
.racing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin: 3em 0;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2em 1em;
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 300;
    color: #ff0000;
    display: block;
    margin-bottom: 0.5em;
}

.stat-label {
    font-size: 0.85em;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Image gallery styles */
.image-gallery {
    display: flex;
    gap: 2em;
    margin: 3em 0;
    flex-wrap: wrap;
    justify-content: center;
}

.image-gallery img {
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-gallery img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Hero image styles */
.hero-image {
    transition: transform 0.3s ease;
    margin: 2em auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img {
        width: 90% !important;
        max-width: 300px;
        height: auto !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
}