:root {
    --bg-dark: #0a0a0a;
    --bg-card: #0f0f0f;
    --neon-green: #ccff00;
    --neon-pink: #ff0066;
    --gold: #dcb360;
    --text-main: #ffffff;
    --text-muted: #8a8a8a;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 80% 30%, rgba(204, 255, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(255, 0, 102, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.site-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Utilities */
.text-gold,
.gold {
    color: var(--gold);
}

.text-white {
    color: #fff;
}

.neon-green {
    color: var(--neon-green);
}

.neon-pink {
    color: var(--neon-pink);
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 0.5rem 3rem;
    position: relative;
    z-index: 100;
    background: #050505;
    border-bottom: 1px solid rgba(204, 255, 0, 0.2);
}

.site-logo {
    height: 112px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(180deg, #ffeaa7 0%, #dcb360 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
    transform: skewX(-10deg);
}

.nav-links,
.nav-actions,
.social-icons {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.nav-actions {
    gap: 2rem;
}

.social-icons {
    gap: 1.2rem;
}

.social-icons a {
    color: var(--text-main);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--neon-green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-header-outline {
    border: 1px solid rgba(220, 179, 96, 0.5);
    color: var(--gold);
    background: transparent;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.btn-header-outline:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(220, 179, 96, 0.2);
}

.btn-neon-green,
.btn-outline-green {
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.btn-neon-green {
    box-shadow:
        inset 0 0 15px rgba(204, 255, 0, 0.1),
        0 0 20px rgba(204, 255, 0, 0.15);
}

.btn-neon-green:hover {
    background: rgba(204, 255, 0, 0.1);
    box-shadow:
        inset 0 0 20px rgba(204, 255, 0, 0.3),
        0 0 30px rgba(204, 255, 0, 0.3);
}

.btn-outline-green {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    font-size: 0.9rem;
    padding: 0.8rem;
}

.btn-outline-green:hover {
    background: var(--neon-green);
    color: #000;
}

.btn-neon-pink {
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    box-shadow:
        inset 0 0 15px rgba(255, 0, 102, 0.1),
        0 0 20px rgba(255, 0, 102, 0.15);
}

.btn-neon-pink:hover {
    background: rgba(255, 0, 102, 0.1);
    box-shadow:
        inset 0 0 20px rgba(255, 0, 102, 0.3),
        0 0 30px rgba(255, 0, 102, 0.3);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-size: 0.9rem;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
}

.btn-discord {
    background: transparent;
    color: #fff;
    border: 1px solid #5865f2;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.btn-discord:hover {
    background: #5865f2;
    border-color: #5865f2;
}

/* Dots */
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.pink {
    background-color: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
}

.dot.red {
    background-color: #ff2a2a;
    box-shadow: 0 0 8px #ff2a2a;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    height: 26vw;
    min-height: 517px;
    padding: 3rem 3rem 2rem;
    background-color: #050505;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 73%;
    height: 100%;
    background-image: url('/assets/img/hero-bg.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #050505 0%, rgba(5, 5, 5, 0) 30%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.95;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    transform: skewX(-8deg);
    text-shadow:
        0 2px 0 rgba(0,0,0,0.85),
        0 6px 18px rgba(0,0,0,0.65),
        0 0 24px rgba(0,0,0,0.45);
}

.hero-desc {
    margin-bottom: 2rem;
}

.hero p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.hero p.highlight {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-actions .btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.hero-actions .btn i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.btn-text strong {
    font-size: 1.1rem;
}

.btn-text span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Features */
.features-wrapper {
    position: relative;
    z-index: 10;
    padding: 0 3rem;
    margin-top: -65px;
}

.features-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    border-top: 1px solid rgba(204, 255, 0, 0.2);
    border-bottom: 1px solid rgba(204, 255, 0, 0.2);
    padding: 1rem 2rem;
    transform: skewX(-20deg);
}

.features-banner > * {
    transform: skewX(20deg);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.feature-text strong {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.feature-text span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.feature-separator {
    width: 2px;
    height: 30px;
    background: var(--neon-green);
    opacity: 0.5;
    transform: skewX(20deg) rotate(15deg);
}

.chevy-logo {
    width: 45px;
    height: 16px;
    background: var(--gold);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.joker-feature img {
    width: 35px;
    height: 35px;
}

.your-next {
    margin-right: 10px;
    color: var(--neon-pink);
    font-family: 'Permanent Marker', cursive;
    font-size: 2.2rem;
    transform: rotate(-5deg);
}

/* Content Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
    padding: 3rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--neon-green);
    border-radius: 4px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.card-content,
.schedule-list,
.card-image-wrapper {
    flex-grow: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* Live Card */
.card-image-wrapper {
    position: relative;
    min-height: 250px;
    border-radius: 4px;
    overflow: hidden;
}

.race-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.image-overlay h3 {
    margin-bottom: 0.2rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.stream-status {
    text-transform: capitalize;
}

.track-info {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Schedule Card */
.view-all {
    display: flex;
    align-items: center;
    color: var(--neon-pink);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.date {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.date .month {
    font-size: 0.9rem;
}

.date .day {
    font-size: 1.8rem;
    font-weight: 700;
}

.details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.details strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.details span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.race-badge {
    min-width: 46px;
    padding: 0.3rem 0.55rem;
    border: 1px solid var(--neon-pink);
    border-radius: 999px;
    color: var(--neon-pink);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Crew Card */
.crew-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crew-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.member-count {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.three-users {
    color: var(--neon-green);
    font-size: 2.2rem;
}

.member-count div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.member-count strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.member-count span {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.crew-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.crew-card .btn {
    margin-top: auto;
}

.social-links-lg {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    background: #1a1a1a;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #2a2a2a;
    border-color: var(--neon-pink);
}

.social-btn.youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
}

.social-btn.discord:hover {
    color: #5865f2;
    border-color: #5865f2;
}

.social-btn.coffee:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.support-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    background: rgba(220, 179, 96, 0.05);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.support-cta:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 18px rgba(220, 179, 96, 0.25);
}

.crew-card .btn {
    margin-top: auto;
}

.crew-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 1rem 1.5rem;
    background: #000;
    border: 1px solid rgba(204, 255, 0, 0.15);
    border-radius: 4px;
}

/* Optional old logo styles */
.v8-vets-logo {
    align-self: flex-end;
    margin: -40px 20px 20px 0;
    font-family: 'Permanent Marker', cursive;
    font-size: 4rem;
    line-height: 0.85;
    transform: rotate(-10deg);
}

.v8-vets-logo .v8 {
    color: var(--neon-green);
}

.v8-vets-logo .vets {
    color: var(--neon-pink);
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
}

.footer-logo img {
    height: 52px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-tagline {
    color: var(--text-main);
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-banner {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 8px;
        transform: none;
    }

    .features-banner > * {
        transform: none;
    }

    .feature-separator {
        display: none;
    }
}

@media (max-width: 900px) {
    .site-logo {
        height: 74px;
    }
    
    .navbar,
    .nav-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-actions a.btn {
        display: none;
    }

    .navbar {
        padding: 1.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        height: auto;
        min-height: 520px;
        padding: 2rem 1.2rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.65;
        background-size: cover;
    }

    .hero-content {
        justify-content: center;
    }

    .features-wrapper {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .crew-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-discord,
    .support-cta {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 460px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-wrapper {
        dispay: none;
    }

    .card {
        padding: 1.2rem;
    }

    .crew-footer {
        padding: 1rem;
    }
}