@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes about-line-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 3rem;
    opacity: 1;
  }
}
.about-page {
  background: #fff;
}

.about-hero {
  background: var(--color1);
  color: #fff;
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.about-hero__inner {
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .about-hero__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-hero__inner {
    padding-inline: 2rem;
  }
}
.about-hero__inner {
  text-align: center;
  position: relative;
}
.about-hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color2);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: about-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.about-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  color: #fff;
  animation: about-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
@media (min-width: 768px) {
  .about-hero__title {
    font-size: 3.5rem;
  }
}
.about-hero__subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: about-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@media (min-width: 768px) {
  .about-hero__subtitle {
    font-size: 1.0625rem;
  }
}
.about-hero__line {
  width: 0;
  height: 3px;
  background: var(--color2);
  margin: 0 auto;
  animation: about-line-grow 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  opacity: 0;
}

.about-body {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .about-body {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-body {
    padding-inline: 2rem;
  }
}
.about-body {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-section {
  margin-bottom: 5rem;
}
.about-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color2);
  margin-bottom: 0.6rem;
}
.about-section__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color1);
  line-height: 1.2;
  display: inline-block;
  position: relative;
}
.about-section__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--color2);
  margin: 0.75rem auto 0;
}
@media (min-width: 768px) {
  .about-section__title {
    font-size: 2.25rem;
  }
}

.about-mission {
  margin-bottom: 5rem;
}
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about-mission__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-mission__card {
  border: 1px solid #e8e8e8;
  padding: 2rem 1.75rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-mission__card:hover {
  border-color: var(--color2);
  box-shadow: 0 4px 24px rgba(116, 0, 0, 0.07);
}
.about-mission__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--color2);
}
.about-mission__icon svg {
  width: 100%;
  height: 100%;
}
.about-mission__card-title {
  font-weight: 700;
  color: var(--color1);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.about-mission__card-text {
  color: #666;
  line-height: 1.75;
  font-size: 0.875rem;
}

.about-leadership {
  margin-bottom: 5rem;
}

.about-leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .about-leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-leader-card {
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.about-leader-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.about-leader-card__strip {
  height: 4px;
  background: var(--color2);
}
.about-leader-card__body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-leader-card__avatar {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid #f0f0f0;
  display: block;
}
.about-leader-card__avatar-letter {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color2);
}
.about-leader-card__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color1);
  margin-bottom: 0.6rem;
}
.about-leader-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color2);
  border: 1px solid var(--color2);
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
}
.about-leader-card__bio {
  color: #666;
  line-height: 1.75;
  font-size: 0.875rem;
}
.about-leader-card__profile-link {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color2);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.about-leader-card__profile-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.about-board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .about-board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .about-board-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.about-board-card {
  border: 1px solid #ebebeb;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: border-color 0.2s;
}
.about-board-card:hover {
  border-color: var(--color2);
}
.about-board-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 2px solid #eee;
  display: block;
}
.about-board-card__avatar-letter {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color2);
}
.about-board-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color1);
  line-height: 1.3;
}
.about-board-card__title {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.25rem;
}
.about-board-card__profile-link {
  font-size: 0.7rem;
  color: var(--color2);
  margin-top: 0.25rem;
}

.about-cta {
  background: var(--color1);
  border-left: 4px solid var(--color2);
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.about-cta__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .about-cta__title {
    font-size: 2.25rem;
  }
}
.about-cta__text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.25rem;
  transition: opacity 0.2s;
  text-decoration: none;
}
.about-cta__btn:hover {
  opacity: 0.85;
  color: #fff;
}
.about-cta__btn svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 767px) {
  .about-hero {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .about-hero__title {
    font-size: 2rem;
  }
  .about-body {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .about-section {
    margin-bottom: 3rem;
  }
  .about-mission {
    margin-bottom: 3rem;
  }
  .about-leadership {
    margin-bottom: 3rem;
  }
  .about-leader-card__body {
    padding: 1.75rem 1.25rem;
  }
}
.membership-page {
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.membership-container {
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .membership-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .membership-container {
    padding-inline: 2rem;
  }
}

.membership-header {
  text-align: center;
  margin-bottom: 4rem;
}
.membership-header__badge {
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.membership-header__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin: 0.5rem 0 1rem;
}
@media (min-width: 768px) {
  .membership-header__title {
    font-size: 2rem;
  }
}
.membership-header__text {
  color: #6b7280;
  font-size: 1.125rem;
}

.membership-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .membership-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.membership-benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.membership-benefit-card__icon {
  font-size: 1.875rem;
  flex-shrink: 0;
}
.membership-benefit-card__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.membership-benefit-card__text {
  color: #6b7280;
  font-size: 0.875rem;
}

.membership-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.membership-card__header {
  padding: 1.5rem 2rem;
}
.membership-card__header--blue {
  background: linear-gradient(to right, #2563eb, #1e40af);
}
.membership-card__header--green {
  background: linear-gradient(to right, #16a34a, #0f766e);
}
.membership-card__header-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
}
.membership-card__header-subtitle {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.85;
  color: white;
}
.membership-card__body {
  padding: 2rem;
}

.membership-rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.membership-rule-item {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
}

.membership-rule-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.membership-rule-toggle:hover {
  background: #eff6ff;
}
.membership-rule-toggle__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.membership-rule-toggle__number {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.membership-rule-toggle__text {
  font-weight: 600;
  color: #1f2937;
}

.membership-rule-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #60a5fa;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.membership-rule-content {
  padding: 0 1.25rem 1.25rem;
}
.membership-rule-content__inner {
  padding-left: 2.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
}

.membership-default-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.15s;
}
.membership-default-rule:hover {
  background: #eff6ff;
}
.membership-default-rule__number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.membership-default-rule__text {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.625;
}

.membership-fees-title {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
}
.membership-fees-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.membership-fees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .membership-fees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.membership-fee-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid;
}
.membership-fee-card--recommended {
  border-color: #a855f7;
  box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.15);
}
.membership-fee-card--primary {
  border-color: #bfdbfe;
}
.membership-fee-card--secondary {
  border-color: #e5e7eb;
}
.membership-fee-card__recommended-badge {
  background: #9333ea;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.375rem;
}
.membership-fee-card__body {
  padding: 1.25rem;
}
.membership-fee-card__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.membership-fee-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.membership-fee-card--recommended .membership-fee-card__price {
  color: #7e22ce;
}
.membership-fee-card--primary .membership-fee-card__price {
  color: #1d4ed8;
}
.membership-fee-card--secondary .membership-fee-card__price {
  color: #374151;
}
.membership-fee-card__period {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.membership-fee-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.membership-fee-card__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
  font-style: italic;
}

.membership-fee-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.membership-fee-feature svg {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
  flex-shrink: 0;
}

.membership-alert {
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.membership-alert--info {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.membership-alert--info svg {
  color: #16a34a;
}
.membership-alert--warning {
  background: #fefce8;
  border: 1px solid #fef08a;
  color: #854d0e;
}
.membership-alert--warning svg {
  color: #ca8a04;
}
.membership-alert svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.membership-alert a {
  text-decoration: underline;
  font-weight: 700;
}

.membership-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .membership-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.membership-form-group {
  display: flex;
  flex-direction: column;
}

.membership-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.membership-form-input {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  background: #f9fafb;
  outline: none;
}
.membership-form-input:focus {
  border-color: #2563eb;
}

.membership-cta {
  background: linear-gradient(to right, #eff6ff, #eef2ff);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #dbeafe;
  text-align: center;
}
.membership-cta__title {
  font-weight: 700;
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.membership-cta__text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.membership-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.membership-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.membership-cta-btn--primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.membership-cta-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  color: white;
}
.membership-cta-btn--primary svg {
  width: 1rem;
  height: 1rem;
}
.membership-cta-btn--outline {
  border: 2px solid #bfdbfe;
  color: #1d4ed8;
}
.membership-cta-btn--outline:hover {
  background: #eff6ff;
}

.partners-page {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: #fff;
}

.partners-container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .partners-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .partners-container {
    padding-inline: 2rem;
  }
}

.partners-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.partners-header__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color2);
  margin-bottom: 0.75rem;
}
.partners-header__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color1);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .partners-header__title {
    font-size: 2.75rem;
  }
}
.partners-header__text {
  color: #555;
  font-size: 0.9375rem;
  max-width: 38rem;
  margin-inline: auto;
  line-height: 1.75;
}

.partners-divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.partners-divider__line {
  height: 1px;
  flex: 1;
  background: #ebebeb;
}
.partners-divider__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
  border: 1px solid;
}
.partners-divider__badge--platinum {
  color: #5b21b6;
  background: #f5f0ff;
  border-color: #e9d5ff;
}
.partners-divider__badge--gold {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}
.partners-divider__badge--silver {
  color: #374151;
  background: #f9fafb;
  border-color: #d1d5db;
}
.partners-divider__badge--bronze {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.partners-section {
  margin-bottom: 4.5rem;
}
.partners-section:last-child {
  margin-bottom: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.partner-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  border-color: #c0c0c0;
  transform: translateY(-2px);
}
.partner-card__logo-wrap {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  border-bottom: 1px solid #f5f5f5;
  background: #fafafa;
}
.partner-card__logo-wrap--platinum {
  background: #faf8ff;
  border-bottom-color: #f0eaff;
}
.partner-card__logo-wrap--gold {
  background: #fffdf5;
  border-bottom-color: #fef9e7;
}
.partner-card__logo-wrap--silver {
  background: #fafafa;
  border-bottom-color: #f5f5f5;
}
.partner-card__logo-wrap--bronze {
  background: #fffaf5;
  border-bottom-color: #fef3e7;
}
.partner-card__logo {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.partner-card:hover .partner-card__logo {
  transform: scale(1.05);
}
.partner-card__logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color1);
}
.partner-card__body {
  padding: 1.25rem 1.5rem;
}
.partner-card__name {
  font-weight: 800;
  color: var(--color1);
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
.partner-card__description {
  color: #444;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.partner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid #f5f5f5;
}
.partner-card__contact {
  font-size: 0.75rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.partner-card__contact svg {
  width: 0.8125rem;
  height: 0.8125rem;
}
.partner-card__website {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color2);
  background: rgba(116, 0, 0, 0.06);
  border: 1px solid rgba(116, 0, 0, 0.12);
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  transition: background 0.15s, color 0.15s;
}
.partner-card__website:hover {
  background: var(--color2);
  color: #fff;
}
.partner-card__website svg {
  width: 0.75rem;
  height: 0.75rem;
}

.partners-empty {
  text-align: center;
  padding: 6rem 0;
}
.partners-empty p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #bbb;
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}
.partners-header__badge {
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.partners-header__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0.5rem 0 1rem;
}
@media (min-width: 768px) {
  .partners-header__title {
    font-size: 3rem;
  }
}
.partners-header__text {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 36rem;
  margin-inline: auto;
}

.partners-section {
  margin-bottom: 4rem;
}

.partners-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.partners-divider__line {
  height: 1px;
  flex: 1;
  opacity: 0.3;
}
.partners-divider__badge {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.partner-card__logo-wrap {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
}
.partner-card__logo {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.partner-card:hover .partner-card__logo {
  transform: scale(1.1);
}
.partner-card__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #374151;
}
.partner-card__body {
  padding: 1.25rem;
}
.partner-card__name {
  font-weight: 700;
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.partner-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.partner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partner-card__contact {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.partner-card__contact svg {
  width: 0.875rem;
  height: 0.875rem;
}
.partner-card__website {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: color 0.15s;
  margin-left: auto;
}
.partner-card__website:hover {
  color: #1e40af;
}
.partner-card__website svg {
  width: 0.875rem;
  height: 0.875rem;
}

.partners-empty {
  text-align: center;
  padding: 6rem 0;
  color: #9ca3af;
}
.partners-empty p {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .partners-page {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .partners-header {
    margin-bottom: 2.5rem;
  }
  .partners-header__title {
    font-size: 1.625rem;
  }
  .partners-section {
    margin-bottom: 2.5rem;
  }
}
.news-hero {
  background: linear-gradient(to bottom right, #172554, #1e3a8a, #1d4ed8);
  padding: 6rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%), radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 35%);
  opacity: 0.2;
  pointer-events: none;
}
.news-hero__inner {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .news-hero__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-hero__inner {
    padding-inline: 2rem;
  }
}
.news-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #bfdbfe;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.news-hero__back:hover {
  color: white;
}
.news-hero__back svg {
  width: 1rem;
  height: 1rem;
}

.news-main {
  padding: 2rem 0 5rem;
  margin-top: -2px;
}

.news-main-inner {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .news-main-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-main-inner {
    padding-inline: 2rem;
  }
}

.news-article {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}
.news-article__header {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 640px) {
  .news-article__header {
    padding: 2.5rem;
  }
}
.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.news-article__meta-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: #1d4ed8;
}
.news-article__meta-date, .news-article__meta-readtime {
  font-size: 0.75rem;
  color: #6b7280;
}
.news-article__title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  max-width: 56rem;
}
@media (min-width: 768px) {
  .news-article__title {
    font-size: 3rem;
  }
}
.news-article__image-wrap {
  aspect-ratio: 16/8;
  background: #f3f4f6;
  overflow: hidden;
}
.news-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article__body {
  padding: 2rem 1.5rem;
}
@media (min-width: 640px) {
  .news-article__body {
    padding: 2.5rem;
  }
}
.news-article__prose {
  color: #374151;
  line-height: 1.8;
  max-width: none;
}
.news-article__prose p {
  margin-bottom: 1rem;
}
.news-article__prose h1, .news-article__prose h2, .news-article__prose h3 {
  font-weight: 700;
  color: #111827;
  margin: 1.5rem 0 0.75rem;
}

.news-related {
  padding: 4rem 0;
  background: white;
  border-top: 1px solid #f3f4f6;
}

.news-related-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .news-related-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-related-inner {
    padding-inline: 2rem;
  }
}

.news-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.news-related-header__badge {
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-related-header__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0.25rem;
}
.news-related-header__back {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #1d4ed8;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}
@media (min-width: 640px) {
  .news-related-header__back {
    display: flex;
  }
}
.news-related-header__back:hover {
  gap: 0.75rem;
}
.news-related-header__back svg {
  width: 1rem;
  height: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.news-card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f4f6;
}
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-card__image {
  transform: scale(1.05);
}
.news-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card__placeholder svg {
  width: 3rem;
  height: 3rem;
  color: #60a5fa;
}
.news-card__body {
  padding: 1.5rem;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.news-card__category {
  font-size: 0.75rem;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.news-card__date {
  font-size: 0.75rem;
  color: #9ca3af;
}
.news-card__title {
  font-weight: 700;
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.news-card:hover .news-card__title {
  color: #1d4ed8;
}
.news-card__excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rnk-page {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.rnk-container {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .rnk-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .rnk-container {
    padding-inline: 2rem;
  }
}

.rnk-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.rnk-header__badge {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rnk-header__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0.5rem 0 0.75rem;
}
@media (min-width: 768px) {
  .rnk-header__title {
    font-size: 3rem;
  }
}
.rnk-header__subtitle {
  color: #9ca3af;
  font-size: 1rem;
  max-width: 36rem;
  margin-inline: auto;
}

.rnk-year-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.rnk-year-tabs {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 0.375rem;
  gap: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.rnk-year-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.rnk-year-tab--active {
  background: white;
  color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.rnk-year-tab--inactive {
  color: #6b7280;
}
.rnk-year-tab--inactive:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.6);
}

.rnk-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.rnk-tabs {
  display: flex;
  gap: 0;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 5px;
  width: fit-content;
}

.rnk-tab {
  padding: 9px 26px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.rnk-tab.active {
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.rnk-tab:hover:not(.active) {
  color: #1d4ed8;
}

.rnk-panel {
  display: none;
}
.rnk-panel.active {
  display: block;
}

.rnk-club-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.rnk-club-tabs {
  display: inline-flex;
  background: #eff6ff;
  border-radius: 1rem;
  padding: 0.375rem;
  gap: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  border: 1px solid #dbeafe;
}

.rnk-club-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.rnk-club-tab--active {
  background: white;
  color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.rnk-club-tab--inactive {
  color: #60a5fa;
}
.rnk-club-tab--inactive:hover {
  background: rgba(255, 255, 255, 0.6);
}

.podium-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 3.5rem;
}

.podium-item {
  text-align: center;
}
.podium-item.first {
  margin-top: -2rem;
}

.podium-avatar {
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  display: block;
  border: 4px solid;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.podium-card {
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 110px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.podium-card:hover {
  transform: translateY(-4px);
}
.podium-card .pos-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 auto 0.5rem;
}

.podium-name {
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.podium-club {
  font-size: 0.72rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.podium-pts {
  font-weight: 800;
  font-size: 1.05rem;
}

.rnk-table-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.rnk-table-head {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rnk-table-head h2 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.rnk-table-head span {
  color: #93c5fd;
  font-size: 0.82rem;
}

.rnk-row {
  display: grid;
  align-items: center;
  padding: 13px 24px;
  border-bottom: 1px solid #f8fafc;
  transition: background 0.15s;
}
.rnk-row:hover {
  background: #f0f7ff;
}
.rnk-row:last-child {
  border-bottom: none;
}
.rnk-row.athlete-row {
  grid-template-columns: 56px 1fr 150px 100px;
}
.rnk-row.club-row {
  grid-template-columns: 56px 1fr 100px;
}
.rnk-row.header-row {
  background: #f8fafc;
  padding: 10px 24px;
}
.rnk-row.header-row .rnk-cell {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.rnk-avatar-sm {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.rnk-avatar-letter {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.rnk-pos-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.82rem;
}
.rnk-pos-badge.gold {
  background: #fef3c7;
  color: #92400e;
}
.rnk-pos-badge.silver {
  background: #e2e8f0;
  color: #334155;
}
.rnk-pos-badge.bronze {
  background: #ffedd5;
  color: #9a3412;
}

.rnk-pos-num {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.85rem;
  padding-left: 6px;
}

.rnk-pts {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1d4ed8;
  text-align: right;
}

.club-logo-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: #eff6ff;
  color: #1d4ed8;
}

@media (max-width: 767px) {
  .rnk-page {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .rnk-header {
    margin-bottom: 1.5rem;
  }
  .rnk-header__title {
    font-size: 1.75rem;
  }
  .rnk-year-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .rnk-year-tab {
    flex-shrink: 0;
  }
}
.ci-hero {
  background: var(--color1);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ci-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(116, 0, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.ci-hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ci-hero h1 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ci-hero p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ci-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}
.ci-hero-stat svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

.ci-bar {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.875rem 0;
}

.ci-bar-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .ci-bar-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ci-bar-inner {
    padding-inline: 2rem;
  }
}
.ci-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ci-search-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
}

.ci-search {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 0.5625rem 1rem 0.5625rem 2.5rem;
  font-size: 0.875rem;
  color: #222;
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
  font-family: inherit;
}
.ci-search:focus {
  border-color: var(--color1);
}
.ci-search::placeholder {
  color: #bbb;
}

.ci-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #bbb;
  pointer-events: none;
}

.ci-count {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 600;
  white-space: nowrap;
}

.ci-main {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .ci-main {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ci-main {
    padding-inline: 2rem;
  }
}
.ci-main {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.ci-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 480px) {
  .ci-grid {
    grid-template-columns: 1fr;
  }
}

.ci-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.22s, border-color 0.22s;
}
.ci-card.appeared {
  opacity: 1;
  transform: translateY(0);
}
.ci-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  border-color: #c0c0c0;
}

.ci-card-top {
  height: 72px;
  background: var(--color1);
  position: relative;
  flex-shrink: 0;
}

.ci-card-logo {
  position: absolute;
  bottom: -1.5rem;
  left: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--color2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.ci-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-card-body {
  padding: 2.25rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ci-card-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color1);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.ci-card-loc {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.625rem;
}

.ci-card-desc {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 0.875rem;
}

.ci-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ci-card-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color2);
  background: rgba(116, 0, 0, 0.06);
  border: 1px solid rgba(116, 0, 0, 0.12);
  padding: 0.2rem 0.625rem;
}

.ci-card-arrow {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.ci-card-arrow svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #aaa;
  transition: color 0.15s;
}
.ci-card:hover .ci-card-arrow {
  background: var(--color1);
  border-color: var(--color1);
}
.ci-card:hover .ci-card-arrow svg {
  color: #fff;
}

.ci-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #ebebeb;
}
.ci-section-head__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color1);
  white-space: nowrap;
}
.ci-section-head__sub {
  font-size: 0.8125rem;
  color: #aaa;
  font-weight: 500;
}
.ci-section-head__line {
  flex: 1;
  height: 1px;
  background: #ebebeb;
}

.ci-table-wrap {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.ci-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ci-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid #ebebeb;
}
.ci-table th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ci-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f5f5f5;
  color: #333;
}
.ci-table tbody tr {
  transition: background 0.12s;
}
.ci-table tbody tr:last-child td {
  border-bottom: none;
}
.ci-table tbody tr:hover {
  background: #fafafa;
}

.ci-club-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ci-club-logo {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #ebebeb;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color2);
}
.ci-club-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-club-name {
  font-weight: 700;
  color: var(--color1);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.ci-club-link:hover .ci-club-name {
  color: var(--color2);
}

.ci-rank-medal {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.ci-rank-1 {
  background: #d4a017;
  color: #fff;
}

.ci-rank-2 {
  background: #9ca3af;
  color: #fff;
}

.ci-rank-3 {
  background: #b45309;
  color: #fff;
}

.ci-score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ci-score-bar {
  flex: 1;
  height: 4px;
  background: #f0f0f0;
  overflow: hidden;
  min-width: 60px;
}

.ci-score-bar-fill {
  height: 100%;
  background: var(--color2);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ci-score-val {
  font-weight: 800;
  color: var(--color1);
  font-size: 0.875rem;
  white-space: nowrap;
  min-width: 3rem;
  text-align: right;
}

.ci-empty {
  text-align: center;
  padding: 3rem;
  color: #bbb;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .ci-hero {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .ci-main {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  .ci-bar {
    top: 0;
  }
}
.prof-hero {
  position: relative;
  background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
  height: 180px;
  border-radius: 24px 24px 0 0;
}

.prof-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.prof-identity {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.2rem;
}

.prof-logo {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.prof-logo-letter {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  background: #f0fdfa;
  color: #0f766e;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
}

.prof-meta {
  flex: 1;
  min-width: 0;
  padding-top: 0.5rem;
}

.prof-name {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
}

.prof-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 0.5rem;
}

.prof-meta-item {
  font-size: 0.84rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.prof-meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.prof-meta-item a {
  color: #0891b2;
  font-weight: 600;
  text-decoration: none;
}
.prof-meta-item a:hover {
  text-decoration: underline;
}

.prof-bio {
  padding: 1.2rem 2rem 1.5rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  border-top: 1px solid #f8fafc;
}

.prof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0891b2;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.athletes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.ath-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  border: 1.5px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.15s;
  display: block;
}
.ath-card:hover {
  border-color: #a5f3fc;
  background: #f0fdfe;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.ath-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.65rem;
  display: block;
  border: 2px solid #e2e8f0;
}

.ath-avatar-letter {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1d4ed8;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.ath-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.84rem;
}

.ath-title {
  font-size: 0.7rem;
  color: #d97706;
  font-weight: 600;
  margin-top: 2px;
}

.sec-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sec-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sec-head h2 {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.95rem;
}

.bc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.bc a {
  color: #64748b;
  text-decoration: none;
}
.bc a:hover {
  color: #0891b2;
}
.bc svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.club-position-item {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  background: #f8fafc;
}
.club-position-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.club-position-item__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
}
.club-position-item__description {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.club-position-item__count {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}
.club-position-item__members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .club-position-item__members {
    grid-template-columns: repeat(2, 1fr);
  }
}
.club-position-item__member {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
}
.club-position-item__member-name {
  font-weight: 700;
  color: #0f172a;
}
.club-position-item__member-email {
  font-size: 0.875rem;
  color: #64748b;
}

.prof-hero {
  position: relative;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  height: 180px;
  border-radius: 24px 24px 0 0;
}

.prof-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.prof-identity {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.2rem;
}

.prof-avatar {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.prof-avatar-letter {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
}

.prof-meta {
  flex: 1;
  min-width: 0;
  padding-top: 0.5rem;
}

.prof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.prof-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

.prof-name {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
}

.prof-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.prof-sub a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.prof-sub a:hover {
  text-decoration: underline;
}

.prof-bio {
  padding: 1.2rem 2rem 1.5rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  border-top: 1px solid #f8fafc;
}

.prof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1d4ed8;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.sec-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sec-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sec-head h2 {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.95rem;
}

.yr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.yr-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.15s;
}
.yr-box:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.yr-pts {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1d4ed8;
}

.yr-year {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.yr-pos {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 1px;
}

.res-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.res-table th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  border-bottom: 1px solid #f1f5f9;
}
.res-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f8fafc;
  vertical-align: middle;
}
.res-table tbody tr:hover {
  background: #f8fbff;
}
.res-table tbody tr:last-child td {
  border-bottom: none;
}

.res-comp-name {
  font-weight: 700;
  color: #0f172a;
}

.res-comp-date {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 1px;
}

.res-pts {
  font-weight: 900;
  color: #1d4ed8;
  font-size: 1rem;
}

.bc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.bc a {
  color: #64748b;
  text-decoration: none;
}
.bc a:hover {
  color: #2563eb;
}
.bc svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.comp-index-page {
  padding-top: 10rem;
  padding-bottom: 0;
  background: #fff;
}

.comp-index-container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .comp-index-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comp-index-container {
    padding-inline: 2rem;
  }
}

.comp-index-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.comp-index-header__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color2);
  margin-bottom: 0.6rem;
}
.comp-index-header__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color1);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .comp-index-header__title {
    font-size: 2.25rem;
  }
}
.comp-index-header__text {
  color: #666;
  font-size: 0.9375rem;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.75;
}
.comp-index-header__warning {
  font-size: 0.8125rem;
  color: var(--color2);
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
  opacity: 0.8;
}

.comp-filter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.comp-filter-tabs {
  display: inline-flex;
  border: 1px solid #e0e0e0;
  gap: 0;
}

.comp-filter-tab {
  padding: 0.625rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s;
  border-right: 1px solid #e0e0e0;
}
.comp-filter-tab:last-child {
  border-right: none;
}
.comp-filter-tab--active {
  background: var(--color1);
  color: #fff;
}
.comp-filter-tab--inactive {
  background: #fff;
  color: #555;
}
.comp-filter-tab--inactive:hover {
  background: #f5f5f5;
  color: var(--color1);
}

.comp-rank-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1.25rem;
  margin-bottom: 3.5rem;
  padding: 1.25rem;
  border: 1px solid #ebebeb;
  border-left: 3px solid var(--color2);
}

.comp-rank-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comp-rank-legend-item span:first-child {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-rank-legend-text {
  font-size: 0.75rem;
  color: #777;
}

.comp-index-empty {
  text-align: center;
  padding: 6rem 0;
}
.comp-index-empty svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  opacity: 0.2;
  display: block;
}
.comp-index-empty p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #999;
}

.comp-rank-section {
  margin-bottom: 3.5rem;
}
.comp-rank-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #ebebeb;
}
.comp-rank-section__rank-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
}
.comp-rank-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color1);
}
.comp-rank-section__count {
  font-size: 0.8125rem;
  color: #aaa;
  font-weight: 500;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .comp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .comp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.comp-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.comp-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  border-color: #c0c0c0;
  transform: translateY(-2px);
}
.comp-card__media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--color1);
}
.comp-card__live-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: var(--color2);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 1;
  animation: pulse 2s infinite;
}
.comp-card__live-bg {
  width: 100%;
  height: 100%;
  background: var(--color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__live-bg svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.2);
}
.comp-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.comp-card:hover .comp-card__poster {
  transform: scale(1.04);
}
.comp-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
}
.comp-card__body {
  padding: 1.125rem 1.25rem 1.25rem;
}
.comp-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.comp-card__scope-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}
.comp-card__scope-badge--international {
  background: #f5f0ff;
  color: #6b21a8;
}
.comp-card__scope-badge--mongolian {
  background: rgba(116, 0, 0, 0.07);
  color: var(--color2);
}
.comp-card__date {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 500;
}
.comp-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color1);
  line-height: 1.4;
  transition: color 0.15s;
}
.comp-card:hover .comp-card__title {
  color: var(--color2);
}
.comp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
.comp-card__types-count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color2);
  background: rgba(116, 0, 0, 0.06);
  border: 1px solid rgba(116, 0, 0, 0.12);
  padding: 0.2rem 0.6rem;
}
.comp-card__location {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comp-card__location svg {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
}
.comp-card__type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}
.comp-card__type-tag {
  font-size: 0.6875rem;
  color: #777;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  padding: 0.15rem 0.5rem;
}

.comp-index-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.comp-index-header__badge {
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.comp-index-header__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin: 0.5rem 0 1rem;
}
@media (min-width: 768px) {
  .comp-index-header__title {
    font-size: 2.25rem;
  }
}
.comp-index-header__text {
  color: #6b7280;
  font-size: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.625;
}
.comp-index-header__warning {
  font-size: 0.875rem;
  color: #ea580c;
  font-weight: 500;
  margin-top: 0.25rem;
  display: inline-block;
}

.comp-filter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.comp-filter-tabs {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 0.375rem;
  gap: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.comp-filter-tab {
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.comp-filter-tab--active {
  background: white;
  color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.comp-filter-tab--inactive {
  color: #4b5563;
}
.comp-filter-tab--inactive:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.6);
}

.comp-rank-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.comp-rank-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comp-rank-legend-item span:first-child {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-rank-legend-text {
  font-size: 0.75rem;
  color: #6b7280;
}

.comp-index-empty {
  text-align: center;
  padding: 6rem 0;
  color: #9ca3af;
}
.comp-index-empty svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  opacity: 0.4;
  display: block;
}
.comp-index-empty p {
  font-size: 1.25rem;
  font-weight: 600;
}

.comp-rank-section {
  margin-bottom: 3.5rem;
}
.comp-rank-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.comp-rank-section__rank-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.comp-rank-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}
.comp-rank-section__count {
  font-size: 0.875rem;
  color: #9ca3af;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .comp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .comp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.comp-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  text-decoration: none;
  display: block;
}
.comp-card__media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.comp-card__live-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  animation: pulse 2s infinite;
  z-index: 1;
}
.comp-card__live-badge__dot {
  width: 0.375rem;
  height: 0.375rem;
  background: white;
  border-radius: 9999px;
}
.comp-card__live-bg {
  background: #030712;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__live-bg svg {
  width: 3.5rem;
  height: 3.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.comp-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.comp-card:hover .comp-card__poster {
  transform: scale(1.05);
}
.comp-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #2563eb, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__placeholder svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.3);
}
.comp-card__body {
  padding: 1.25rem;
}
.comp-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.comp-card__scope-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.comp-card__scope-badge--international {
  background: #f3e8ff;
  color: #7e22ce;
}
.comp-card__scope-badge--mongolian {
  background: #dbeafe;
  color: #1d4ed8;
}
.comp-card__date {
  font-size: 0.75rem;
  color: #9ca3af;
}
.comp-card__title {
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  transition: color 0.15s;
}
.comp-card:hover .comp-card__title {
  color: #1d4ed8;
}
.comp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.comp-card__types-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.comp-card__location {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comp-card__location svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
.comp-card__type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}
.comp-card__type-tag {
  font-size: 0.6875rem;
  color: #4b5563;
  background: #f3f4f6;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

@media (max-width: 767px) {
  .comp-index-page {
    padding-top: 5.5rem;
  }
  .comp-filter-wrap {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .comp-filter-tabs {
    flex-shrink: 0;
  }
  .comp-index-header {
    margin-bottom: 2rem;
  }
  .comp-index-header__title {
    font-size: 1.625rem;
  }
  .comp-rank-legend {
    margin-bottom: 2rem;
    padding: 0.875rem;
  }
  .comp-rank-section {
    margin-bottom: 2rem;
  }
}
.comp-show-live {
  background: #050505;
  position: relative;
}
.comp-show-live__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--color2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: pulse 2s infinite;
}
.comp-show-live__frame {
  aspect-ratio: 16/9;
  max-height: 70vh;
  width: 100%;
}

.comp-show-poster {
  position: relative;
  height: 22rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .comp-show-poster {
    height: 30rem;
  }
}
.comp-show-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comp-show-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.comp-show-poster__info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .comp-show-poster__info {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comp-show-poster__info {
    padding-inline: 2rem;
  }
}
.comp-show-poster__info {
  padding-bottom: 2.25rem;
}
.comp-show-poster__info-inner {
  width: 100%;
  max-width: 52rem;
}
.comp-show-poster__badges {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.comp-show-poster__scope {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  backdrop-filter: blur(4px);
}
.comp-show-poster__rank {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}
.comp-show-poster__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.875rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .comp-show-poster__title {
    font-size: 2.25rem;
  }
}
.comp-show-poster__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}
.comp-show-poster__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.comp-show-poster__meta svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.8;
}

.comp-show-placeholder {
  height: 22rem;
  background: var(--color1);
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .comp-show-placeholder {
    height: 28rem;
  }
}
.comp-show-placeholder__info {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .comp-show-placeholder__info {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comp-show-placeholder__info {
    padding-inline: 2rem;
  }
}
.comp-show-placeholder__info {
  padding-bottom: 2.25rem;
  width: 100%;
  max-width: 52rem;
}
.comp-show-placeholder__badges {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.comp-show-placeholder__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.875rem;
}
@media (min-width: 768px) {
  .comp-show-placeholder__title {
    font-size: 2.25rem;
  }
}

.comp-show-container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .comp-show-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comp-show-container {
    padding-inline: 2rem;
  }
}
.comp-show-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.comp-show-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 2rem;
}
.comp-show-breadcrumb a {
  text-decoration: none;
  color: #aaa;
  transition: color 0.15s;
}
.comp-show-breadcrumb a:hover {
  color: var(--color2);
}
.comp-show-breadcrumb svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #ddd;
}
.comp-show-breadcrumb span:last-child {
  color: #555;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comp-show-header {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #ebebeb;
}
.comp-show-header h1 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color1);
  line-height: 1.2;
  margin: 0.875rem 0 1rem;
}
@media (min-width: 768px) {
  .comp-show-header h1 {
    font-size: 2.5rem;
  }
}
.comp-show-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #777;
}
.comp-show-header__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.comp-show-header__meta svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--color2);
}
.comp-show-header__description {
  color: #555;
  margin-top: 1.25rem;
  line-height: 1.75;
  font-size: 0.9375rem;
  max-width: 52rem;
}
.comp-show-header__scope-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
.comp-show-header__scope-badge--international {
  background: #f5f0ff;
  color: #6b21a8;
}
.comp-show-header__scope-badge--mongolian {
  background: rgba(116, 0, 0, 0.07);
  color: var(--color2);
}

.comp-show-types-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comp-show-types-title svg {
  width: 1rem;
  height: 1rem;
}

.comp-show-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2rem;
  width: fit-content;
}

.type-tab {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.75rem 1.625rem;
  font-size: 0.8125rem;
  font-family: inherit;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-right: 1px solid #e0e0e0;
  color: #555;
  background: #fff;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.type-tab:focus {
  outline: none;
}
.type-tab:hover:not(.active) {
  background: #f5f5f5;
  color: var(--color1);
}
.type-tab.active, .type-tab--active {
  background: var(--color1);
  color: #fff;
  border-right-color: var(--color1);
}
.type-tab__formula {
  font-size: 0.7rem;
  opacity: 0.65;
  margin-left: 0.3rem;
}
.type-tab--grandprix.active {
  background: var(--color2);
  border-right-color: var(--color2);
}

.type-panel.hidden {
  display: none;
}

.comp-result-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.comp-result-card--grandprix {
  border-left: 3px solid var(--color2);
}
.comp-result-card__header {
  padding: 1rem 1.5rem;
  background: #fafafa;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comp-result-card__header h3 {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color1);
}
.comp-result-card__header span {
  font-size: 0.8125rem;
  color: #aaa;
}
.comp-result-card__info {
  border-bottom: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .comp-result-card__info {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .comp-result-card__poster-wrap {
    width: 15rem;
    flex-shrink: 0;
  }
}
.comp-result-card__poster img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .comp-result-card__poster img {
    height: 100%;
  }
}
.comp-result-card__description {
  flex: 1;
  padding: 1.25rem 1.5rem;
}
.comp-result-card__description p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  white-space: pre-line;
}
.comp-result-card__rules {
  padding: 1rem 1.5rem;
  background: #fafafa;
  border-bottom: 1px solid #ebebeb;
}
.comp-result-card__rule-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.comp-result-card__special-rules {
  font-size: 0.8125rem;
  color: #777;
  line-height: 1.625;
  margin-top: 0.5rem;
}
.comp-result-card__usage-comps {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: #999;
}
.comp-result-card__usage-comps a {
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #555;
  padding: 0.2rem 0.6rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.comp-result-card__usage-comps a:hover {
  color: var(--color2);
  border-color: var(--color2);
}
.comp-result-card__empty {
  text-align: center;
  padding: 3rem;
  color: #bbb;
  font-size: 0.875rem;
}

.comp-rule-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border: 1px solid transparent;
}
.comp-rule-badge--rounds {
  background: rgba(116, 0, 0, 0.06);
  color: var(--color2);
  border-color: rgba(116, 0, 0, 0.12);
}
.comp-rule-badge--targets {
  background: #eef2ff;
  color: #4338ca;
  border-color: #e0e7ff;
}
.comp-rule-badge--distance {
  background: #f5f0ff;
  color: #6b21a8;
  border-color: #ede9fe;
}
.comp-rule-badge--time {
  background: #ecfeff;
  color: #0e7490;
  border-color: #cffafe;
}
.comp-rule-badge--maxtime {
  background: #fffbeb;
  color: #92400e;
  border-color: #fef3c7;
}
.comp-rule-badge--usage {
  background: #f0fdf4;
  color: #065f46;
  border-color: #d1fae5;
}

.comp-results-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}
.comp-results-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid #ebebeb;
}
.comp-results-table th {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
}
.comp-results-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #f5f5f5;
  color: #333;
}
.comp-results-table tbody tr {
  transition: background 0.12s;
}
.comp-results-table tbody tr:last-child td {
  border-bottom: none;
}
.comp-results-table tbody tr:hover {
  background: #fafafa;
}

.comp-pos-gold {
  width: 1.75rem;
  height: 1.75rem;
  background: #d4a017;
  color: #fff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.comp-pos-silver {
  width: 1.75rem;
  height: 1.75rem;
  background: #9ca3af;
  color: #fff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.comp-pos-bronze {
  width: 1.75rem;
  height: 1.75rem;
  background: #b45309;
  color: #fff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.comp-pos-num {
  color: #ccc;
  font-size: 0.875rem;
  padding-left: 0.375rem;
  font-weight: 600;
}

.comp-result-athlete {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.comp-result-athlete__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.comp-result-athlete__avatar-letter {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #f5f5f5;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color2);
  flex-shrink: 0;
}
.comp-result-athlete__avatar-letter--grandprix {
  background: rgba(116, 0, 0, 0.07);
}
.comp-result-athlete__name {
  font-weight: 600;
  color: var(--color1);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.comp-result-athlete:hover .comp-result-athlete__name {
  color: var(--color2);
}

.comp-score-total {
  font-weight: 800;
  color: var(--color1);
  font-size: 0.9375rem;
}

.comp-score-round {
  font-weight: 500;
  color: #555;
}

.comp-grandprix-score {
  font-weight: 800;
  color: var(--color2);
  font-size: 0.9375rem;
}

.comp-result-row--top {
  background: rgba(116, 0, 0, 0.025);
}
.comp-result-row--top .comp-score-total {
  color: var(--color2);
}

.comp-score-dot {
  margin-left: 0.25rem;
  font-size: 0.625rem;
  color: #22c55e;
}

.comp-show-poster {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .comp-show-poster {
    height: 24rem;
  }
}
.comp-show-poster__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comp-show-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.comp-show-placeholder {
  height: 12rem;
  background: linear-gradient(to right, #1e3a8a, #1d4ed8);
}

.comp-show-container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .comp-show-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comp-show-container {
    padding-inline: 2rem;
  }
}
.comp-show-container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.comp-show-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.comp-show-breadcrumb a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.15s;
}
.comp-show-breadcrumb a:hover {
  color: #2563eb;
}
.comp-show-breadcrumb svg {
  width: 1rem;
  height: 1rem;
}
.comp-show-breadcrumb__current {
  color: #374151;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comp-show-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .comp-show-header {
    flex-direction: row;
    align-items: flex-start;
  }
}
.comp-show-header__main {
  flex: 1;
}
.comp-show-header__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.comp-show-header__scope-badge {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.comp-show-header__scope-badge--international {
  background: #f3e8ff;
  color: #7e22ce;
}
.comp-show-header__scope-badge--mongolian {
  background: #dbeafe;
  color: #1d4ed8;
}
.comp-show-header__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .comp-show-header__title {
    font-size: 2.25rem;
  }
}
.comp-show-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.comp-show-header__meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.comp-show-header__meta-item svg {
  width: 1rem;
  height: 1rem;
  color: #60a5fa;
}
.comp-show-header__description {
  color: #4b5563;
  margin-top: 1rem;
  line-height: 1.625;
}

.comp-show-types-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comp-show-types-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.comp-show-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.type-tab {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #e5e7eb;
  color: #4b5563;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}
.type-tab:hover {
  border-color: #bfdbfe;
  color: #2563eb;
}
.type-tab.active, .type-tab--active {
  border-color: #2563eb;
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.type-tab--grandprix.active {
  border-color: #9333ea;
  background: #9333ea;
}
.type-tab--grandprix:hover {
  border-color: #d8b4fe;
  color: #7e22ce;
}

.type-panel.hidden {
  display: none;
}

.comp-result-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}
.comp-result-card--grandprix {
  border-color: #e9d5ff;
}
.comp-result-card__header {
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comp-result-card__header h3 {
  font-weight: 700;
  color: #1f2937;
}
.comp-result-card__header span {
  font-size: 0.875rem;
  color: #9ca3af;
}
.comp-result-card__header--grandprix {
  background: linear-gradient(to right, #faf5ff, #eef2ff);
  border-bottom-color: #e9d5ff;
}
.comp-result-card__header--grandprix h3 {
  color: #6b21a8;
}
.comp-result-card__header--grandprix span {
  color: #a78bfa;
}
.comp-result-card__info {
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .comp-result-card__info {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .comp-result-card__poster-wrap {
    width: 16rem;
    flex-shrink: 0;
  }
}
.comp-result-card__poster-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .comp-result-card__poster-img {
    height: 100%;
  }
}
.comp-result-card__description {
  flex: 1;
  padding: 1.25rem 1.5rem;
}
.comp-result-card__description p {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.625;
  white-space: pre-line;
}
.comp-result-card__rules {
  padding: 1rem 1.5rem;
  background: rgba(248, 250, 252, 0.6);
  border-bottom: 1px solid #f3f4f6;
}
.comp-result-card__rule-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.comp-result-card__special-rules {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.625;
}
.comp-result-card__usage-comps {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.comp-result-card__usage-label {
  font-size: 0.75rem;
  color: #64748b;
}
.comp-result-card__usage-link {
  font-size: 0.75rem;
  background: white;
  border: 1px solid #e5e7eb;
  color: #475569;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.15s;
}
.comp-result-card__usage-link:hover {
  color: #1d4ed8;
  border-color: #93c5fd;
}
.comp-result-card__empty {
  text-align: center;
  padding: 3rem;
  color: #9ca3af;
}

.comp-rule-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.comp-rule-badge--rounds {
  background: #dbeafe;
  color: #1d4ed8;
}
.comp-rule-badge--targets {
  background: #e0e7ff;
  color: #4338ca;
}
.comp-rule-badge--distance {
  background: #f3e8ff;
  color: #7e22ce;
}
.comp-rule-badge--time {
  background: #cffafe;
  color: #0e7490;
}
.comp-rule-badge--maxtime {
  background: #fef3c7;
  color: #92400e;
}
.comp-rule-badge--usage {
  background: #d1fae5;
  color: #065f46;
}

.comp-results-table {
  overflow-x: auto;
}
.comp-results-table table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}
.comp-results-table thead tr {
  background: #eff6ff;
  text-align: left;
}
.comp-results-table th {
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}
.comp-results-table td {
  padding: 1rem;
}
.comp-results-table tbody tr {
  transition: background 0.1s;
}
.comp-results-table tbody tr:hover {
  background: #f8fbff;
}
.comp-results-table .divide-y td {
  border-bottom: 1px solid #f9fafb;
}

.comp-pos-gold {
  width: 1.75rem;
  height: 1.75rem;
  background: #facc15;
  color: white;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-pos-silver {
  width: 1.75rem;
  height: 1.75rem;
  background: #d1d5db;
  color: white;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-pos-bronze {
  width: 1.75rem;
  height: 1.75rem;
  background: #fb923c;
  color: white;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-pos-num {
  color: #9ca3af;
  font-size: 0.875rem;
  padding-left: 0.375rem;
}

.comp-result-athlete {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.comp-result-athlete__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.comp-result-athlete__avatar-letter {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.comp-result-athlete__name {
  font-weight: 500;
  color: #111827;
  transition: color 0.15s;
}
.comp-result-athlete:hover .comp-result-athlete__name {
  color: #1d4ed8;
}

.comp-score-total {
  font-weight: 700;
  color: #1d4ed8;
  font-size: 1rem;
  text-align: right;
}

.comp-score-round {
  font-weight: 500;
  color: #374151;
  text-align: right;
}

.comp-grandprix-score {
  font-weight: 700;
  color: #7e22ce;
  font-size: 1rem;
  text-align: right;
}

.comp-row-top {
  background: rgba(254, 249, 195, 0.3);
}

.comp-result-row--top {
  background: rgba(254, 249, 195, 0.3);
}

.comp-score-dot {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  color: #22c55e;
}

@media (max-width: 767px) {
  .comp-show-type-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }
  .type-tab {
    flex-shrink: 0;
    padding: 0.625rem 1.125rem;
  }
  .comp-show-poster__title,
  .comp-show-placeholder__title {
    font-size: 1.375rem;
  }
  .comp-show-poster__meta {
    gap: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .comp-show-breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .comp-show-header h1 {
    font-size: 1.625rem;
  }
  .comp-result-card__header {
    padding: 0.75rem 1rem;
  }
  .comp-results-table th,
  .comp-results-table td {
    padding: 0.625rem 0.75rem;
  }
}
.ct-page {
  padding-top: 5rem;
}

.ct-hero-poster {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ct-hero-poster {
    height: 20rem;
  }
}
.ct-hero-poster__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ct-hero-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}
.ct-hero-poster__title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1.5rem 2rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .ct-hero-poster__title-wrap {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ct-hero-poster__title-wrap {
    padding-inline: 2rem;
  }
}
.ct-hero-poster__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
@media (min-width: 768px) {
  .ct-hero-poster__title {
    font-size: 3rem;
  }
}

.ct-hero-plain {
  background: linear-gradient(to bottom right, #1e3a8a, #1d4ed8);
  padding: 4rem 0;
}
.ct-hero-plain__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .ct-hero-plain__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ct-hero-plain__inner {
    padding-inline: 2rem;
  }
}
.ct-hero-plain__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
}
@media (min-width: 768px) {
  .ct-hero-plain__title {
    font-size: 3rem;
  }
}

.ct-container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .ct-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ct-container {
    padding-inline: 2rem;
  }
}
.ct-container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.ct-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}
.ct-breadcrumb a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.15s;
}
.ct-breadcrumb a:hover {
  color: #2563eb;
}
.ct-breadcrumb svg {
  width: 1rem;
  height: 1rem;
}
.ct-breadcrumb__current {
  color: #374151;
  font-weight: 500;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .ct-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.ct-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
}
.ct-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ct-card__title svg {
  width: 1.25rem;
  height: 1.25rem;
}
.ct-card__body {
  color: #374151;
  line-height: 1.625;
  white-space: pre-line;
}

.ct-comp-list {
  display: flex;
  flex-direction: column;
}

.ct-comp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.15s;
}
.ct-comp-item:hover {
  background: rgba(239, 246, 255, 0.5);
}
.ct-comp-item__rank {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.ct-comp-item__info {
  flex: 1;
  min-width: 0;
}
.ct-comp-item__name {
  font-weight: 600;
  color: #1f2937;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s;
}
.ct-comp-item:hover .ct-comp-item__name {
  color: #1d4ed8;
}
.ct-comp-item__meta {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}
.ct-comp-item__arrow {
  width: 1rem;
  height: 1rem;
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.15s;
}
.ct-comp-item:hover .ct-comp-item__arrow {
  color: #60a5fa;
}

.ct-specs-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
}
.ct-specs-card__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.ct-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9fafb;
}
.ct-spec-row:last-child {
  border-bottom: none;
}
.ct-spec-row dt {
  font-size: 0.875rem;
  color: #6b7280;
}
.ct-spec-row dd {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}
.ct-spec-row dd.ct-spec-formula {
  font-family: monospace;
  font-size: 0.75rem;
  color: #1d4ed8;
  text-align: right;
  max-width: 60%;
}

:root {
  --font1: "Open Sans", sans-serif;
  --font2: 'Montserrat', sans-serif;
  --color1: #000;
  --color2: #740000;
  --body-color: #fff;
  --color-black: #000;
  --color-grey: #5A5A5A;
  --color-white: #fff;
  --color-whiteGrey: #FCFCFC;
  --color-yellow: #FDCD01;
  --color-footer: #2F2E2E;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color1);
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font2) !important;
  background: var(--body-color);
}

p, a, div, h1, h2, h3, h4, h5, h6, span {
  font-family: var(--font2);
  margin: 0;
}

a, a:hover {
  text-decoration: none;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tc-container {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
}
.tc-container.full {
  max-width: 100%;
}
.tc-container.small {
  max-width: 880px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .tc-container {
    padding: 0 14px;
  }
}

.uk-sticky-placeholder {
  display: none !important;
}

#content {
  padding-top: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  #content {
    padding-bottom: 0;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.bg-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color1);
  line-height: normal;
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .bg-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0px 20px -6px rgba(0, 0, 0, 0.1);
}
header .header-top {
  background-color: var(--color1);
  padding: 8px 24px;
}
header .header-top .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}
header .header-top .menu-list .list-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-white);
  font-family: var(--font2);
  line-height: normal;
  letter-spacing: 0.6px;
}
header .header-bottom {
  background-color: var(--color-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-bottom .logo a {
  display: flex;
  align-items: center;
}
header .header-bottom .logo a img {
  width: auto;
  height: 42px;
}
header .header-bottom .nav-list {
  display: flex;
  gap: 20px;
}
header .header-bottom .nav-list .nav-dropdown .uk-dropdown {
  flex-direction: row;
  gap: 42px;
}
header .header-bottom .nav-list .nav-dropdown .uk-dropdown.uk-open {
  display: flex !important;
}
header .header-bottom .nav-list .nav-dropdown .uk-dropdown .uk-dropdown-nav .uk-nav-header {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--color1);
  margin-bottom: 8px;
}
header .header-bottom .nav-list .nav-dropdown .uk-dropdown .uk-dropdown-nav a {
  font-family: var(--font2);
  font-size: 13px;
  font-weight: 500;
  color: var(--color1);
  line-height: normal;
  transition: 0.2s ease;
}
header .header-bottom .nav-list .nav-dropdown .uk-dropdown .uk-dropdown-nav a:hover {
  color: var(--color2);
}
header .header-bottom .nav-list .nav-link, header .header-bottom .nav-list button {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--color1);
  font-family: var(--font2);
  line-height: normal;
  position: relative;
  display: flex;
  background: transparent;
  border: none;
}
header .header-bottom .nav-list .nav-link::after, header .header-bottom .nav-list button::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  right: auto;
  bottom: -2px;
  height: 1px;
  background-color: var(--color2);
  transition: width 0.3s ease;
}
header .header-bottom .nav-list .nav-link:hover::after, header .header-bottom .nav-list button:hover::after {
  width: 100%;
}
header .header-bottom .nav-list .nav-link.active::after, header .header-bottom .nav-list button.active::after {
  width: 100%;
}

footer {
  margin-top: 80px;
  padding: 40px 0 0;
  box-shadow: 0 0px 20px -6px rgba(0, 0, 0, 0.1);
}
footer .top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
footer .top .logo-footer .logo {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
footer .top .logo-footer .logo img {
  width: auto;
  height: 72px;
}
footer .top .logo-footer .desc p {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: normal;
}
footer .top .menu-box .f-tt, footer .top .contact-box .f-tt {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
footer .top .menu-box ul, footer .top .contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .top .menu-box .menu-list li {
  display: flex;
}
footer .top .menu-box .menu-list li a {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
footer .top .menu-box .menu-list li a:hover {
  color: var(--color2);
}
footer .top .contact-box .contact-list li {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
footer .bottom {
  background-color: #000;
  padding: 6px 0;
}
footer .bottom .flex-box {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
footer .bottom .flex-box span, footer .bottom .flex-box a {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  line-height: normal;
}

.cover .cover-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.cover .cover-card .cover-details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cover .cover-card .cover-details {
    transform: translateX(-50%);
    top: auto;
    bottom: 10%;
  }
}
.cover .cover-card .cover-details h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  line-height: normal;
  max-width: 500px;
  margin: 0 auto 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cover .cover-card .cover-details h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.cover .cover-card .cover-details p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cover .cover-card .cover-details p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.cover .cover-card .cover-details .btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cover .cover-card .cover-details .btn-group {
    flex-direction: column;
    gap: 12px;
  }
}
.cover .cover-card .cover-details .btn-group .link-btn {
  padding: 12px 24px;
  background-color: var(--color-white);
  color: var(--color1);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
  line-height: normal;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.cover .cover-card .cover-details .btn-group .link-btn.type1 {
  background-color: var(--color2);
  color: var(--color-white);
}
.cover .cover-card .cover-details .btn-group .link-btn.type1:hover {
  background-color: var(--color1);
}
.cover .cover-card .cover-details .btn-group .link-btn:hover {
  background-color: var(--color2);
  color: var(--color-white);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-section {
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
}
.ticker-section .ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-section .ticker-wrap .ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-section .ticker-wrap .ticker-inner:hover {
  animation-play-state: paused;
}
.ticker-section .ticker-wrap .ticker-inner .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 2rem;
  margin-right: 2rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.ticker-section .ticker-wrap .ticker-inner .ticker-item img {
  height: 2.5rem; /* h-10 */
  width: auto; /* w-auto */
  object-fit: contain; /* object-contain */
  transition: transform 0.2s ease; /* transition-transform */
}
.ticker-section .ticker-wrap .ticker-inner .ticker-item .name {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.875rem;
}
.ticker-section .ticker-wrap .ticker-inner .ticker-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.athletes-competitions {
  padding: 80px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .athletes-competitions {
    padding: 40px 0;
  }
}
.athletes-competitions .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.athletes-competitions .box::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ececec;
  position: absolute;
  left: calc(40% - 24px);
  top: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .athletes-competitions .box::after {
    display: none;
  }
}
.athletes-competitions .box .athletes {
  width: calc(40% - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .athletes-competitions .box .athletes {
    width: 100%;
  }
}
.athletes-competitions .box .athletes .athletes-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  border-radius: 20px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
}
.athletes-competitions .box .athletes .athletes-box .sub-title {
  font-size: 14px;
  margin-bottom: 2px;
}
.athletes-competitions .box .athletes .athletes-box .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 32px;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .profile-pic {
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 500px;
  overflow: hidden;
  margin-bottom: 16px;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .profile-pic img, .athletes-competitions .box .athletes .athletes-box .athletes-item .profile-pic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .body .tag {
  background-color: var(--color-yellow);
  padding: 4px 14px;
  border-radius: 500px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .body .name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color1);
  margin-bottom: 4px;
  text-align: center;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .body .club {
  font-size: 12px;
  color: var(--color-grey);
  margin-bottom: 8px;
}
.athletes-competitions .box .athletes .athletes-box .athletes-item .body .bio {
  font-size: 14px;
  color: var(--color1);
  text-align: center;
}
.athletes-competitions .box .competitions {
  width: 60%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .athletes-competitions .box .competitions {
    width: 100%;
    margin-top: 40px;
  }
}
.athletes-competitions .box .competitions .competitions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px;
}
.athletes-competitions .box .competitions .competitions-list .competitions-item {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.athletes-competitions .box .competitions .competitions-list .competitions-item .name {
  font-size: 24px;
  font-weight: 600;
  color: var(--color1);
  margin-bottom: 4px;
}
.athletes-competitions .box .competitions .competitions-list .competitions-item .date {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--color2);
  margin-bottom: 8px;
}
.athletes-competitions .box .competitions .competitions-list .competitions-item .location {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font2);
  color: var(--color-grey);
}
.athletes-competitions .box .competitions .btn-group {
  display: flex;
  padding: 0 24px;
}
.athletes-competitions .box .competitions .btn-group .link-more {
  color: var(--color1);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font2);
  line-height: normal;
  transition: 0.3s ease;
  position: relative;
}
.athletes-competitions .box .competitions .btn-group .link-more::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -4px;
  height: 1px;
  background-color: var(--color2);
  transition: width 0.3s ease;
}
.athletes-competitions .box .competitions .btn-group .link-more:hover {
  font-size: 14px;
}

.section-news {
  background-color: #000;
  padding: 120px 0;
}
.section-news .bg-title {
  color: var(--color-white);
}
.section-news .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-news .news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.section-news .news-list .news-item {
  display: flex;
  flex-direction: column;
}
.section-news .news-list .news-item .img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgb(255, 255, 255);
}
.section-news .news-list .news-item .img img, .section-news .news-list .news-item .img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-news .news-list .news-item .body .title, .section-news .news-list .news-item .body .link-more {
  color: var(--color-white);
  text-align: center;
}
.section-news .news-list .news-item .body .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-list .news-item .body .link-more {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-partners {
  padding: 120px 0;
}
.section-partners .partners-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-partners .partners-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-partners .partners-list .partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-partners .partners-list .partners-item .img {
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
.section-partners .partners-list .partners-item .img img, .section-partners .partners-list .partners-item .img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-partners .partners-list .partners-item .name {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.section-join .box {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  border-radius: 24px;
  margin: 0 auto;
  box-shadow: 0 0px 20px -4px rgba(0, 0, 0, 0.15);
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-join .box {
    padding: 24px 20px;
  }
}
.section-join .box .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-join .box .title {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.section-join .box .description {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  max-width: 600px;
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-join .box .description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.section-join .box .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-join .box .btn-group {
    flex-direction: column;
  }
}
.section-join .box .btn-group .link-btn {
  padding: 12px 24px;
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
  line-height: normal;
  transition: background-color 0.3s ease;
  color: var(--color1);
  border-radius: 8px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.section-join .box .btn-group .link-btn.type1 {
  background-color: var(--color2);
  color: var(--color-white);
}
.section-join .box .btn-group .link-btn.type1:hover {
  background-color: var(--color1);
}
.section-join .box .btn-group .link-btn:hover {
  background-color: var(--color2);
  color: var(--color-white);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color1);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 48px);
  height: calc(100vh - 48px);
  background: #0a0a0a;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
.nav-mobile__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-mobile__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.nav-mobile__close:hover {
  color: #fff;
}
.nav-mobile__links {
  display: flex;
  flex-direction: column;
}
.nav-mobile__link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  font-family: var(--font2);
  display: block;
}
.nav-mobile__link:hover, .nav-mobile__link.active {
  color: var(--color2);
}
.nav-mobile__link--small {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}
.nav-mobile__link--small:hover, .nav-mobile__link--small.active {
  color: var(--color2);
}
.nav-mobile__link--btn {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font2);
}
.nav-mobile__section {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 1.25rem 0 0.25rem;
}
.nav-mobile__auth {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .header-top {
    display: none;
  }
  header .header-bottom .nav-list {
    display: none !important;
  }
  .nav-burger {
    display: flex;
  }
  .comp-index-page {
    padding-top: 5.5rem;
  }
  .rnk-page {
    padding-top: 5.5rem;
  }
  footer {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  footer .top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

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