@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 10vh;
}

body {
  min-height: 100vh;
  line-height: 1;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*
  Типографические переменные
*/
/*
  Размеры шрифта
*/
/*
  Цвета
*/
/*
  Цвета команд
*/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

p {
  color: #b3b3b3;
}

.team-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1rem;
  margin-bottom: 60px;
}
.section-heading::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #e10600;
  margin: 15px auto 0;
}

.year {
  color: #e10600;
  font-weight: 300;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 10vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: rgba(21, 21, 30, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1002;
}

.footer {
  background: #0a0a0a;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e10600, transparent);
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__main {
    gap: 25px;
  }
}
.footer__brand .footer__logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.footer__brand .footer__description {
  font-size: 0.95rem;
  max-width: 300px;
}
.footer__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer__link {
  display: block;
  color: #b3b3b3;
  padding: 8px 0;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.footer__link:hover {
  color: #e10600;
  transform: translateX(5px);
}
.footer__developer .developer__info {
  margin-bottom: 15px;
}
.footer__developer .developer__info .developer__name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer__developer .developer__role {
  font-size: 0.9rem;
}
.footer .developer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .developer__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.footer .developer__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: #e10600;
}
.footer .developer__link:hover .developer__icon {
  color: #e10600;
}
.footer .developer__link .developer__icon {
  transition: color 0.3s ease;
}
.footer .developer__link span {
  font-size: 0.9rem;
}
.footer__copyright p {
  font-size: 0.85rem;
  text-align: center;
}

.side-menu {
  display: none;
}

.hamb {
  cursor: pointer;
  padding: 40px 20px;
  z-index: 1002;
}
.hamb-line {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
  transition: all 0.2s ease-out;
}
.hamb-line::before, .hamb-line::after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #15151e;
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.nav__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px;
  color: #b3b3b3;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 28px;
  left: -85px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 511.99 511.99'%3E%3Cg%3E%3Cpath style='fill:%23bfbfc0;' d='M479.991,319.993c-5.891,0-10.656-4.781-10.656-10.672v-21.326c0-5.891,4.766-10.672,10.656-10.672 s10.656,4.781,10.656,10.672v21.326C490.647,315.212,485.882,319.993,479.991,319.993z'/%3E%3Cpath style='fill:%23bfbfc0;' d='M501.334,330.665h-42.687c-5.875,0-10.656-4.781-10.656-10.672s4.781-10.672,10.656-10.672h42.687 c5.875,0,10.656,4.781,10.656,10.672S507.209,330.665,501.334,330.665z'/%3E%3Cpath style='fill:%23bfbfc0;' d='M309.338,255.995c-5.906,0-10.688-4.781-10.688-10.672v-10.656c0-5.891,4.781-10.672,10.688-10.672 c5.875,0,10.655,4.781,10.655,10.672v10.656C319.993,251.214,315.213,255.995,309.338,255.995z'/%3E%3Cpath style='fill:%23bfbfc0;' d='M234.66,213.324c-5.891,0-10.664-4.766-10.664-10.656v-10.672c0-5.891,4.773-10.672,10.664-10.672 c5.89,0,10.671,4.781,10.671,10.672v10.672C245.331,208.558,240.55,213.324,234.66,213.324z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='fill:%23f82a3f;' d='M490.147,254.183c-9.906-5.938-23.375-10.641-40.062-13.984 c-27.391-5.469-54.296-5.531-55.437-5.531c-5.874,0-10.655,4.766-10.655,10.656v42.671c0,5.891,4.781,10.672,10.655,10.672h106.686 c5.875,0,10.656-4.781,10.656-10.672C511.99,278.542,508.209,265.011,490.147,254.183z'/%3E%3Cpath style='fill:%23f82a3f;' d='M394.648,234.667H255.995v-31.999c0-5.891-4.773-10.672-10.664-10.672 c-109.443,0-162.27,45.499-164.465,47.437c-1.789,1.594-3,3.734-3.43,6.078l-13.266,72.56c-0.57,3.125,0.273,6.328,2.305,8.75 c2.023,2.438,5.023,3.844,8.188,3.844h234.675c2.297,0,4.531-0.75,6.391-2.141l42.671-31.998 c4.703-3.531,5.656-10.219,2.125-14.938c-2.656-3.547-7.109-4.953-11.156-3.938l45.279-21.655c5.906,0,10.688-4.781,10.688-10.672 S400.555,234.667,394.648,234.667z'/%3E%3C/g%3E%3Cpath style='fill:%23dd081d;' d='M255.995,234.667v-31.999c0-5.891-4.773-10.672-10.664-10.672 c-109.443,0-162.27,45.499-164.465,47.437c-1.789,1.594-3,3.734-3.43,6.078l-13.266,72.56c-0.57,3.125,0.273,6.328,2.305,8.75 c2.023,2.438,11.016-75.482,14.18-75.482L255.995,234.667z'/%3E%3Cpath style='fill:%23bfbfc0;' d='M33.343,287.995H10.664C4.773,287.995,0,283.214,0,277.323v-95.998 c0-5.891,4.773-10.656,10.664-10.656h85.334c5.891,0,10.664,4.766,10.664,10.656v21.344c0,2.5-0.883,4.937-2.492,6.843 l-62.655,74.671C39.491,286.604,36.499,287.995,33.343,287.995z'/%3E%3Cpath style='fill:%23252628;' d='M74.662,234.667c-29.406,0-53.327,23.921-53.327,53.328c0,29.404,23.921,53.326,53.327,53.326 c29.414,0,53.335-23.922,53.335-53.326C127.997,258.589,104.076,234.667,74.662,234.667z'/%3E%3Cpath style='fill:%23F5F7FA;' d='M82.209,295.542c-4.164,4.156-10.922,4.156-15.086,0c-4.164-4.172-4.164-10.922,0-15.094 c4.164-4.156,10.922-4.156,15.086,0C86.373,284.62,86.373,291.37,82.209,295.542z'/%3E%3Cg%3E%3Crect x='282.655' y='234.665' style='fill:%23dd081d;' width='10.687' height='96'/%3E%3Cpath style='fill:%23dd081d;' d='M234.66,298.667h-63.999c-5.891,0-10.664-4.781-10.664-10.672s4.773-10.672,10.664-10.672h63.999 c5.89,0,10.671,4.781,10.671,10.672S240.55,298.667,234.66,298.667z'/%3E%3C/g%3E%3Cpath style='fill:%23252628;' d='M394.648,234.667c-29.405,0-53.312,23.921-53.312,53.328c0,29.404,23.906,53.326,53.312,53.326 c29.421,0,53.343-23.922,53.343-53.326C447.991,258.589,424.069,234.667,394.648,234.667z'/%3E%3Cpath style='fill:%23F5F7FA;' d='M402.211,295.542c-4.172,4.156-10.937,4.156-15.093,0c-4.156-4.172-4.156-10.922,0-15.094 c4.156-4.156,10.921-4.156,15.093,0C406.367,284.62,406.367,291.37,402.211,295.542z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  transition: left 0.7s ease-in-out, opacity 0.2s;
}
.nav__link:hover {
  color: #ffffff;
}
.nav__link:hover::after {
  left: 120%;
  opacity: 1;
}

.side-menu:checked ~ .nav {
  transform: translateY(0);
}

.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}

@media (min-width: 768px) {
  .hamb {
    display: none;
  }
  .nav {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    transform: none;
    display: block;
    padding: 25px 0;
  }
  .nav__list {
    flex-direction: row;
    gap: 24px;
  }
  .nav__link {
    padding: 0;
    font-size: 14px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(225, 6, 0, 0.5);
  }
}
@keyframes fadeUpTeam {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.75);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url("../assets/images/hero/spa-circuit.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero__container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  color: #ffffff;
  animation: fadeUp 1s forwards;
}
.hero__content .hero__label {
  font-family: "Bebas Neue", sans-serif;
  color: #e10600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.hero__content .hero__title {
  font-size: 3rem;
  margin-bottom: 16px;
}
.hero__content .hero__description {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hero__content .hero__actions {
  display: flex;
  gap: 16px;
}
.hero__visual {
  animation: slideIn 1.5s forwards;
}
.hero__visual img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.5));
}

@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
  }
  .hero__visual {
    order: -1;
    margin-bottom: 30px;
  }
  .hero__visual img {
    max-width: 480px;
  }
  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hero__visual img {
    max-width: 280px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before {
  left: 100%;
}

.btn--primary {
  box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2);
  background: linear-gradient(135deg, #e10600 0%, #c10500 100%);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ff1e1e 0%, #e10600 100%);
  border-color: rgba(255, 30, 30, 0.5);
  box-shadow: 0 8px 25px rgba(225, 6, 0, 0.4);
}
.btn--primary.btn--pulse {
  animation: pulse-red 2s infinite;
}

.btn--secondary {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.teams {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #202020 0%, #171717 100%);
}
.teams::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 12px);
}
.teams .container {
  position: relative;
  z-index: 1;
}

.team-block {
  background: #0e0e0e;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  border-left: 6px solid transparent;
  transition: transform 0.3s ease;
  animation: fadeUpTeam linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.team-block:hover {
  transform: translateY(-4px);
}
.team-block__header {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 24px;
  align-items: center;
}
.team-block__main-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.team-block__logo {
  width: 64px;
  flex-shrink: 0;
}

.team-subtitle {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: #b3b3b3;
}

.team-block__car img {
  transition: transform 0.4s ease;
}
.team-block__car:hover img {
  transform: translateX(10px);
}

.car-shadow {
  width: 80%;
  height: 10px;
  background: radial-gradient(rgba(0, 0, 0, 0.6), transparent);
  margin: 8px auto 0;
}

.team-block__stats {
  display: flex;
  justify-content: space-between;
}

.team-stat {
  text-align: center;
}
.team-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
.team-stat .stat-label {
  font-size: 0.75rem;
  color: #b3b3b3;
  text-transform: uppercase;
}

.team-details-toggle {
  display: none;
}

.team-details-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}
.team-details-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.team-details-btn .details-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s;
}

.team-details-toggle:checked + .team-details-btn .details-icon {
  transform: rotate(180deg);
}

.team-block__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-details-toggle:checked ~ .team-block__content {
  max-height: 2000px;
  opacity: 1;
}

.team-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
}

.driver {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.team-content__section .section-title, .team-content__description .section-title {
  margin-bottom: 16px;
  font-size: 1.1rem;
  opacity: 0.9;
}
.team-content__section .driver-number, .team-content__description .driver-number {
  font-weight: 700;
  color: #b3b3b3;
}
.team-content__section .driver-nationality, .team-content__description .driver-nationality {
  font-size: 0.8rem;
  color: #b3b3b3;
}

.technical-list li {
  margin-bottom: 8px;
}

.achievement {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.achievement-year {
  font-weight: 600;
  color: #b3b3b3;
}

.team-content__description {
  padding: 0 32px 32px;
}
.team-content__description p {
  margin-bottom: 12px;
  color: #b3b3b3;
}

.team-block--redbull {
  border-color: #4781D7;
}
.team-block--redbull .team-details-btn {
  color: #4781D7;
}
.team-block--redbull .stat-value {
  color: #4781D7;
}

.team-block--ferrari {
  border-color: #ED1131;
}
.team-block--ferrari .team-details-btn {
  color: #ED1131;
}
.team-block--ferrari .stat-value {
  color: #ED1131;
}

.team-block--mercedes {
  border-color: #00D7B6;
}
.team-block--mercedes .team-details-btn {
  color: #00D7B6;
}
.team-block--mercedes .stat-value {
  color: #00D7B6;
}

.team-block--mclaren {
  border-color: #F47600;
}
.team-block--mclaren .team-details-btn {
  color: #F47600;
}
.team-block--mclaren .stat-value {
  color: #F47600;
}

.team-block--aston-martin {
  border-color: #229971;
}
.team-block--aston-martin .team-details-btn {
  color: #229971;
}
.team-block--aston-martin .stat-value {
  color: #229971;
}

@media (max-width: 1024px) {
  .team-block__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-block__stats {
    justify-content: center;
    gap: 24px;
  }
  .team-content__grid {
    grid-template-columns: 1fr;
  }
}
.drivers {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.drivers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 100, 255, 0.1) 0%, transparent 50%), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.drivers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.driver-card {
  height: 400px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.driver-card__inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  position: relative;
}
.driver-card:hover .driver-card__inner {
  transform: rotateY(180deg);
}
.driver-card__side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.driver-card--front {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  position: relative;
  gap: 20px;
  z-index: 2;
}
.driver-card--back {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid transparent;
  z-index: 1;
}
.driver-card__bg-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 200px;
  font-weight: 900;
  opacity: 0.3;
  font-family: "Bebas Neue", sans-serif;
  text-shadow: 0 0 10px currentColor;
}
.driver-card__photo {
  height: 250px;
  object-position: center;
  z-index: 2;
}
.driver-card__info {
  text-align: center;
  width: 100%;
}

.driver-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.driver-team {
  font-weight: 300;
}

.driver-details {
  margin: 20px 0 0;
}
.driver-details li {
  margin-bottom: 12px;
  padding-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.driver-card--verstappen .driver-card__bg-number {
  color: #4781D7;
}
.driver-card--verstappen .driver-card--back {
  border-color: #4781D7;
}
.driver-card--verstappen .driver-team {
  color: #4781D7;
}

.driver-card--leclerc .driver-card__bg-number {
  color: #ED1131;
}
.driver-card--leclerc .driver-card--back {
  border-color: #ED1131;
}
.driver-card--leclerc .driver-team {
  color: #ED1131;
}

.driver-card--russell .driver-card__bg-number {
  color: #00D7B6;
}
.driver-card--russell .driver-card--back {
  border-color: #00D7B6;
}
.driver-card--russell .driver-team {
  color: #00D7B6;
}

.driver-card--piastri .driver-card__bg-number {
  color: #F47600;
}
.driver-card--piastri .driver-card--back {
  border-color: #F47600;
}
.driver-card--piastri .driver-team {
  color: #F47600;
}

.driver-card--alonso .driver-card__bg-number {
  color: #229971;
}
.driver-card--alonso .driver-card--back {
  border-color: #229971;
}
.driver-card--alonso .driver-team {
  color: #229971;
}

.calendar {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0c10 0%, #05060a 100%);
  position: relative;
  overflow: hidden;
}
.calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.01) 20px, rgba(255, 255, 255, 0.01) 21px);
  pointer-events: none;
}
.calendar__subtitle {
  text-align: center;
  color: #b3b3b3;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 300;
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .calendar__grid {
    grid-template-columns: 1fr;
  }
}

.calendar-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.calendar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e10600, #4781D7);
  border-radius: 20px 20px 0 0;
}
.calendar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.calendar-card:hover .calendar-card__track-svg {
  transform: scale(1.1);
}
.calendar-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.calendar-card__round {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.calendar-card__round-number {
  font-size: 0.85rem;
  color: #b3b3b3;
  font-weight: 500;
}
.calendar-card__round-date {
  font-size: 1.1rem;
  font-weight: 600;
}
.calendar-card__status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calendar-card__status-badge--upcoming {
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
}
.calendar-card__status-badge--completed {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}
.calendar-card__status-badge--cancelled {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}
.calendar-card__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
}
@media (max-width: 576px) {
  .calendar-card__content {
    grid-template-columns: 1fr;
  }
}
.calendar-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calendar-card__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-card__circuit {
  color: #b3b3b3;
  font-size: 0.95rem;
  font-weight: 300;
}
.calendar-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.calendar-card__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.calendar-card__detail-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.7;
}
.calendar-card__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
@media (max-width: 576px) {
  .calendar-card__track {
    flex-direction: row;
    justify-content: space-between;
  }
}
.calendar-card__track-svg {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.calendar-card__track-svg .track-svg {
  width: 100%;
  height: 100%;
  color: #e10600;
}
.calendar-card__track-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
@media (max-width: 576px) {
  .calendar-card__track-info {
    align-items: end;
  }
}
.calendar-card__track-length {
  font-size: 0.9rem;
  font-weight: 500;
}
.calendar-card__track-type {
  font-size: 0.8rem;
  color: #b3b3b3;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.calendar__legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b3b3b3;
  font-size: 0.9rem;
}
.calendar__legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.calendar__legend-color--upcoming {
  background: #00c853;
}
.calendar__legend-color--completed {
  background: #2196f3;
}
.calendar__legend-color--cancelled {
  background: #f44336;
}

.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(225, 6, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 205, 181, 0.05) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent 0px, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
  pointer-events: none;
}
.about__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.about__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}
.about__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #e10600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about__card:hover .about__card-icon {
  color: #e10600;
  transform: scale(1.1);
}
.about__card-icon {
  margin-bottom: 20px;
  transition: all 0.3s;
}
.about__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
.about__card-text {
  color: #b3b3b3;
  font-size: 0.95rem;
}
.about__tech {
  text-align: center;
}
.about__tech-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
}
.about .tech-tag {
  display: inline-block;
  margin: 5px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.about .tech-tag:hover {
  background: #ff1e1e;
  border-color: #ff1e1e;
  transform: translateY(-2px);
}

/*# sourceMappingURL=main.css.map */
