*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: rftone;
  src: url("../fonts/RFTONE-REGULAR.TTF") format("opentype");
  src: url("../fonts/RFTONE-REGULAR.TTF") format("opentype");
}
@font-face {
  font-family: rftonebold;
  src: url("../fonts/RFTONE-BOLD.TTF") format("opentype");
  src: url("../fonts/RFTONE-BOLD.TTF") format("opentype");
}

#mobile-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #001a3a 0%, #003080 50%, #001a3a 100%);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
  overflow-y: auto;
}
.gate-rings svg {
  width: 160px;
  margin-bottom: 24px;
  animation: floatRings 3s ease-in-out infinite;
}
@keyframes floatRings {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.gate-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.gate-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.gate-title span {
  color: #ffd700;
}
.gate-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
}
.gate-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "rftone", sans-serif;
  overflow-x: hidden;
}
.hero-wrap {
  position: relative;
  background: #0248a9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
}

.floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-el {
  position: absolute;
  opacity: 0.1;
  animation: floatAnim linear infinite;
  user-select: none;
}

.float-el img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}
@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.float-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  animation: ringFloat ease-in-out infinite;
}

@keyframes ringFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.12;
  }

  50% {
    transform: translateY(-24px) scale(1.06);
    opacity: 0.22;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.eyebrow {
  font-size: 16px;
  text-transform: uppercase;
  color: #60d6ff;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  animation: fadeDown 0.8s 0.1s both;
}

.hero-title {
  font-size: clamp(50px, 14vw, 120px);
  position: relative;
  z-index: 2;
  animation: fadeDown 0.9s 0.2s both;
  color: #6dda83;
}

.hero-year {
  font-size: clamp(20px, 4vw, 36px);
  color: #01b3eb;
  position: relative;
  z-index: 2;
  animation: fadeDown 0.9s 0.3s both;
}

.rings-row {
  animation: fadeUp 0.9s 0.4s both;
}

.ring-svg {
  width: 100%;
}

.bottom-footer img {
  width: 100%;
  margin-top: -40px;
}

.date-row {
  display: flex;
  overflow: hidden;
  margin: 20px auto;
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.5s both;
}

.dc {
  flex: 1;
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dc:last-child {
  border-right: none;
}

.dn {
  font-size: clamp(24px, 5vw, 40px);
  color: rgb(1, 168, 71);
  line-height: 1;
}

.dl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Countdown */
.countdown {
  background-image: url(../images/olimpiya/countdown.png);
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.slide-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 16px;
  height: 100%;
}
.coundown-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  animation: fadeDown 0.6s 0.1s both;
}

.btn-group {
  display: flex;
  text-align: center;
  justify-content: center;
}

.reg-btn,
.map-btn {
  border: 2px solid #3ecf5e;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 0 18px rgba(62, 207, 94, 0.3);
}

.reg-btn:hover,
.map-btn:hover {
  background: rgba(62, 207, 94, 0.15);
  box-shadow: 0 0 28px rgba(62, 207, 94, 0.55);
}

.date-row,
.countdown-row {
  display: flex;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}

.dc,
.cd {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.dc:last-child,
.cd:last-child {
  border-right: none;
}

.dn,
.cn {
  font-size: clamp(28px, 6vw, 38px);
  color: #3ecf5e;
  line-height: 1.4;
}

.dl,
.cl {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 3px;
}

.divider {
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 28px 0;
  position: relative;
  z-index: 2;
}

.lets-move-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rings-small svg {
  width: 90px;
}

.lets-move-text {
  font-size: clamp(44px, 12vw, 72px);
  color: #fff;
  letter-spacing: -1px;
  line-height: 0.9;
  transform: perspective(300px) rotateX(8deg) skewX(-4deg);
}

.countdown-label {
  font-size: clamp(24px, 5vw, 28px);
  color: #3ecf5e;
  margin: 32px 0 16px;
  text-transform: uppercase;
  text-align: center;
}

/* Type Sport  */

.type_sport {
  position: relative;
  background: #0248a9;
  overflow: hidden;
  padding: 32px 16px;
}

.type_sport_title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
}

.type_box_group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.type_box {
  width: calc(33% - 10px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}

.type_box img {
  width: 100%;
}

.type_box_title {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

/* Programm Day */

.programm {
  background: #0248a9;
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.programm_inner {
  padding: 32px 16px;
}

.programm_label {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: #6dda83;
  font-weight: bold;
}

.programm_group {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programm_box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 80%;
  margin: 0 auto;
}

.programm_hour {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}

.programm_title {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}
.programm_desc {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  color: #c8c8c8;
}

.programm_line {
  width: 80%;
  height: 1px;
  background: #fff;
  margin-top: 16px;
}

/* Shou */

.shou {
  position: relative;
  background-image: url("../images/olimpiya/shou.png");
  background-position: bottom;
  background-size: cover;
  overflow: hidden;
  padding: 32px 16px;
  height: 100vh;
}
.title_back {
  text-align: center;
}

.shou_sport_title {
  display: inline-block;
  padding: 24px 40px;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  background: url("../images/olimpiya/titleback.svg") center/100% 100% no-repeat;
}

.shou_sport_subtitle {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  color: #6dda83;
  margin-top: 24px;
  font-weight: bold;
}

.shou_box_group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.shou_box {
  width: calc(50% - 8px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.shou_box img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.shou_box_title {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

/* Food zone */

.food {
  position: relative;
  background: #0248a9;
  overflow: hidden;
  padding: 32px 16px;
}
.food_sport_title {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
}

.food_sport_subtitle {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: #6dda83;
  margin-bottom: 16px;
  font-weight: bold;
}

.food_box_group {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.food_box {
  width: calc(50% - 8px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.food_box img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.food_map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#regForm {
  position: absolute;
  left: 0;
  padding: 0 16px;
  z-index: 9;
}

.contact_map {
  margin: 16px 0;
  position: absolute;
  height: 400px;
  bottom: -130px;
  text-align: center;
  justify-content: center;
  display: flex;
  left: 20%;
  z-index: 1;
}

.map_title {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.map_subtitle {
  font-size: 12px;
  color: #9b9b9b;
  text-align: center;
}
.map {
  width: 100%;
  margin: 16px 0;
}

/* Passport  */

.passport {
  background: #0248a9;
  background-position: center;
  background-size: cover;
}
.passport_inner {
  padding: 32px 16px;
}

.passport_label {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  color: #6dda83;
}

.passport_subtitle {
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 22px;
  margin: 10px 0;
  font-weight: 400;
}

.passport_book {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  width: 64%;
}

.logo_title {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #e5bc53;
  line-height: 22px;
  margin-top: 24px;
  font-weight: 400;
}

.logo_box {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 16px 0;
}

.logo_box img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.logo_bottom_title {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #c57d28;
  line-height: 22px;
  margin: 10px 0;
  font-weight: 400;
}

.logo_bottom {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: flex;
  margin: 0 auto;
}

/* Contact */
.contact {
  position: relative;
  background: #0248a9;
  overflow: hidden;
  padding: 32px 16px;
  text-align: center;
  height: 130vh;
}

.contact_sport_title {
  display: inline-block;
  padding: 38px 30px;

  font-size: 24px;
  text-transform: uppercase;
  color: #fff;

  background: url("../images/olimpiya/titleback.svg") center/100% 100% no-repeat;
}

.form-group {
  background: url("../images/olimpiya/contact.svg") center/100% 100% no-repeat;
  padding: 32px 16px;
  margin-top: 24px;
}
.field-group {
  margin-bottom: 18px;
}
.field-group label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0px 50px;
  text-align: left;
}
.field-group input,
.field-group select {
  width: 70%;
  background: #00a651;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 15px;
  padding: 6px 0;
  outline: none;
  box-sizing: border-box;
}

.field-group input:focus,
.field-group select:focus {
  background: transparent;
  color: #fff;
  outline: none;
}

.field-group select option {
  color: #000;
}
.form-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.5;
  margin: 16px 0 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.success-msg {
  text-align: center;
  padding: 40px 20px;
}
.success-msg p {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.radio-label input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
.radio-label input[type="radio"]:checked {
  border-color: #fff;
  background: #fff;
  box-shadow: inset 0 0 0 4px #2ecc71;
}

/* LANG SWITCHER */
.lang-switcher {
  position: fixed;
  top: 24px;
  right: 10px;
  z-index: 99999;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-switcher a {
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0248a9;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  transition: background 0.2s;
}

.lang-switcher a.active {
  background: #0248a9;
  color: #fff;
}

.lang-switcher a:hover:not(.active) {
  background: #f0ebe5;
}
