:root {
    /* Colors inspired by Sportstech image */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* Brand Gradient (Red/Orange) */
    --brand-gradient: linear-gradient(135deg, #FF4B1F 0%, #FF9068 100%);
    --brand-color: #FF4B1F;

    /* UI Elements */
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 20, 0.8);

    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;

    /* Fonts */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    /* Modern, bold */
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Layout Wrappers --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 24px;
    height: 24px;
    background: var(--brand-gradient);
    border-radius: 4px;
    transform: skew(-10deg);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--brand-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* --- Buttons --- */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 75, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 31, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Hero Section (The "Card") --- */
.hero-wrapper {
    padding: 20px 0;
}

.hero-card {
    background: var(--bg-card);
    border-radius: 40px;
    /* Large radius like image */
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    /* Subtle glow from top left */
    background: radial-gradient(circle at 0% 0%, rgba(255, 75, 31, 0.15), transparent 40%), var(--bg-card);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

h1.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Big impact */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title .highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 450px;
}

.stats-bar {
    margin-top: 80px;
    display: flex;
    gap: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: #ff9068;
    /* Light orange */
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Floating UI elements decoration */
.floating-pill {
    position: absolute;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    right: 50px;
    bottom: 50px;
}

/* --- Map / Game Section --- */
.game-interface {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #1e1e1e;
    height: 600px;
    position: relative;
    display: flex;
}

#sidebar {
    width: 300px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    overflow-y: auto;
}

#map-container {
    flex: 1;
    background: #2a2a2a;
    position: relative;
}

.panel-header {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.panel-header:first-of-type {
    margin-top: 0;
}

.vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.vehicle-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.vehicle-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.vehicle-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vehicle-status.active {
    color: #2ecc71;
}

.vehicle-status.delayed {
    color: #f1c40f;
}

/* AdSense Container */
.ad-banner {
    width: 100%;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}