:root {
    --color-bg: #002141;
    --color-bg-sec: #001D3D;
    --color-text: #e5e5e5;
    --color-muted: #a0a0a0;
    --color-border: #1a1a1a;
    --color-accent: #FFC300;
    --color-accent-light: #FFD60A;
    --color-shadow: #003566;
    --color-accent-bg: rgba(255, 107, 53, 0.05);
    --color-card-bg: rgba(26, 26, 26, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #000814;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-accent);
}

.banner {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background-image: url("./banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
}

.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    /*background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);*/
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 24px;
    color: var(--color-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .game-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--color-accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-shadow);
}

.stats {
    padding: 80px 0;
    /*background: linear-gradient(180deg, tranbackground-color: var(--color-bg-sec);*/
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: var(--color-accent-bg);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-muted);
}

.drivers {
    background-color: var(--color-bg-sec);
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.driver-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.driver-card:nth-child(1) { animation-delay: 0.2s; }
.driver-card:nth-child(2) { animation-delay: 0.4s; }

.driver-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.driver-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--color-accent);
}

.driver-info {
    padding: 30px;
}

.driver-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.driver-role {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.driver-bio {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.driver-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.driver-stat {
    flex: 1;
}

.driver-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

.driver-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.about {
    padding: 80px 0;
    /*background: var(--color-accent-bg);*/
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    background-color: var(--color-bg-sec);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--color-muted);
    margin-bottom: 40px;
}

footer {
    background-color: var(--color-bg-sec);
    padding: 40px 0;
    text-align: center;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 48px; }
    .hero .subtitle { font-size: 18px; }
    .section-title { font-size: 36px; }
    nav ul { gap: 15px; }
    .stats-grid, .drivers-grid { grid-template-columns: 1fr; }
}
