@charset "UTF-8";
@font-face {
  font-family: "Gibson";
  src: url("Gibson-Light.eot");
  src: url("../fonts/Gibson-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gibson-Light.woff2") format("woff2"), url("../fonts/Gibson-Light.woff") format("woff"), url("../fonts/Gibson-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gibson";
  src: url("../fonts/Gibson-Bold.eot");
  src: url("Gibson-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gibson-Bold.woff2") format("woff2"), url("../fonts/Gibson-Bold.woff") format("woff"), url("../fonts/Gibson-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gibson";
  src: url("../fonts/Gibson-Regular.eot");
  src: url("Gibson-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gibson-Regular.woff2") format("woff2"), url("../fonts/Gibson-Regular.woff") format("woff"), url("../fonts/Gibson-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gibson";
  src: url("../fonts/Gibson-SemiBold.eot");
  src: url("Gibson-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gibson-SemiBold.woff2") format("woff2"), url("../fonts/Gibson-SemiBold.woff") format("woff"), url("../fonts/Gibson-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gibson-Book";
  src: url("../fonts/Gibson-Book.eot");
  src: url("Gibson-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/Gibson-Book.woff2") format("woff2"), url("../fonts/Gibson-Book.woff") format("woff"), url("../fonts/Gibson-Book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gibson";
  background-color: #0a1628;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: url("../images/bg_lodd.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  max-width: 2048px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 50px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .container {
    padding: 30px 30px;
    max-width: 1536px;
    margin: 0 auto;
  }
}

.header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  position: absolute;
  top: 50px;
  left: 50px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .header {
    top: 20px;
    left: 30px;
  }
}

.logo img {
  height: 100px;
  width: auto;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .logo img {
    height: 60px;
  }
}

.title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.title .brace {
  color: #00d4ff;
  font-size: 64px;
}
.title .title-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title .drone-icon {
  position: relative;
}
.title .drone-icon::after {
  content: "✈";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
}

.main-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
  min-height: 850px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .main-content {
    min-height: 340px;
  }
}

.top-teams {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 460px;
  justify-content: space-between;
  height: 820px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .top-teams {
    height: 440px;
    width: 500px;
  }
}

.team-card {
  padding: 4px 34px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  transition: all 0.3s ease;
  width: 460px;
  height: 200px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-card {
    width: 350px;
    height: 160px;
    padding: 14px 24px;
    gap: 24px;
  }
}
.team-card .team-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.team-card .team-image svg {
  width: 100%;
  height: auto;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-card .team-image svg {
    height: 100%;
  }
}

.team-left {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  gap: 20px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-left {
    gap: 10px;
  }
}

.team-rank {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-rank {
    gap: 10px;
  }
}
.team-rank .rank-number {
  font-size: 48px;
  font-weight: 700;
  color: #00d4ff;
  line-height: 1;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-rank .rank-number svg {
    width: auto;
    height: 50px;
  }
}
.team-rank .rank-suffix {
  font-size: 18px;
  color: #00ff88;
  font-weight: 600;
}

.rank-label {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: bold;
  letter-spacing: 1.3px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .rank-label {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
  }
}

.team-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.team-name {
  font-size: 30px;
  font-weight: normal;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-name {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    gap: 30px;
  }
}

.team-time {
  font-size: 30px;
  color: #ffffff;
  font-weight: normal;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-time {
    font-size: 20px;
  }
}

.leaderboard {
  width: 100%;
  height: 820px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .leaderboard {
    height: 430px;
  }
}

.leaderboard-wrapper {
  height: 760px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .leaderboard-wrapper {
    height: 400px;
  }
}
.leaderboard-wrapper {
  padding: 0;
  position: relative;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}
.leaderboard-table thead {
  background: linear-gradient(90deg, #09DAD2 0%, #3EF124 100%);
  position: sticky;
  top: 0;
  z-index: 1;
}
.leaderboard-table thead th {
  padding: 20px 30px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0a1628;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .leaderboard-table thead th {
    font-size: 20px;
    padding: 10px 15px;
  }
}
.leaderboard-table tbody tr {
  transition: background-color 0.3s ease;
}
.leaderboard-table tbody tr:hover {
  background-color: rgba(0, 212, 255, 0.1);
}
.leaderboard-table tbody tr:last-child {
  border-bottom: none;
}
.leaderboard-table tbody td {
  padding: 20px 30px;
  font-size: 28px;
  color: #ffffff;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .leaderboard-table tbody td {
    font-size: 16px;
    padding: 16px 30px;
    letter-spacing: 1px;
  }
}
.leaderboard-table tbody td:first-child {
  font-weight: 300;
  color: #00d4ff;
}
.leaderboard-table tbody td:nth-child(2) {
  font-weight: 300;
}
.leaderboard-table tbody td:last-child {
  color: #00d4ff;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .container {
    padding: 30px 40px;
  }
  .title {
    font-size: 48px;
  }
  .title .brace {
    font-size: 48px;
  }
  .title .drone-icon::after {
    font-size: 36px;
    right: -25px;
  }
  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
  }
  .team-card {
    padding: 25px;
  }
  .team-rank .rank-number {
    font-size: 56px;
  }
  .team-name {
    font-size: 28px;
  }
  .team-time {
    font-size: 24px;
  }
  .leaderboard-table thead th {
    padding: 15px 20px;
    font-size: 16px;
  }
  .leaderboard-table tbody td {
    padding: 15px 20px;
    font-size: 18px;
  }
}
.leaderboard-wrapper {
  padding: 20px;
  padding-top: 30px;
}
.leaderboard-wrapper .leaderboard-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.leaderboard-wrapper .leaderboard-image img {
  width: 100%;
  height: auto;
}

.rank-label-wrapper {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .rank-label-wrapper {
    gap: 5px;
  }
}
@media (max-width: 1550px) and (max-height: 600px) {
  .rank-label-wrapper .rank-suffix svg {
    width: 26px;
    height: auto;
  }
}

.banner-padding-top {
  padding-top: 180px;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .banner-padding-top {
    padding-top: 100px;
  }
}

.leaderboard-table-wrapper {
  overflow-y: auto;
  height: 760px;
}
.leaderboard-table-wrapper .leaderboard-table {
  height: 100%;
}

@media (max-width: 1550px) and (max-height: 600px) {
  .leaderboard-table-wrapper {
    height: 350px;
  }
}
.shape_large {
  display: block;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .shape_large {
    display: none;
  }
}

.shape_small {
  display: none;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .shape_small {
    display: block;
  }
}

.team-img-large {
  display: block;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-img-large {
    display: none;
  }
}

.team-img-small {
  display: none;
}
@media (max-width: 1550px) and (max-height: 600px) {
  .team-img-small {
    display: block;
  }
}

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