* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --text-primary: #f4f6f7;
  --text-secondary: #a7b7c0;
  --accent-color: #bf6929;
  --header-bg: #2d2d2d;
  --card-bg: rgba(191, 105, 41, 0.15);
  --border-color: rgba(191, 105, 41, 0.4);
  --footer-bg: #1a1a1a;
  --footer-text: #a7b7c0;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  font-size: 2.5rem;
}
.theme-dark .hero-title {
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
}

.body-text {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
}
.theme-dark .body-text {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
}

.highlight-text {
  font-family: "Montserrat", sans-serif;
  color: #bf9d7f;
  font-weight: 400;
  line-height: 1.6;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

#header {
  position: fixed;
  top: 0;
  z-index: 500;
  width: 100%;
  /* height: 75px; */
  /* padding: 10px; */
  background-color: transparent;
  transition: all 0.3s ease;
}
#header.scrolled {
  background-color: var(--bg-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 13px 13px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__burger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 600;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}
.header__burger:hover {
  background: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}
.header__burger:hover .header__burger-line {
  background-color: var(--bg-primary);
}
.header__burger:active {
  transform: scale(0.95);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
}
.header__burger-line {
  width: 24px;
  height: 2.5px;
  background-color: var(--accent-color);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}
.header__burger-line:not(:last-child) {
  margin-bottom: 5px;
}
.header__burger--active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: rotate(90deg);
}
.header__burger--active .header__burger-line {
  background-color: var(--bg-primary);
}
.header__burger--active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.header__burger--active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.header__img {
  width: 150px;
  height: 100px;
  /* position: absolute; */
  /* right: 600px; */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__img {
    right: 300px;
  }
}
@media (max-width: 767px) {
  .header__img {
    right: 50px;
    top: 0;
    /* left: 0; */
    position: relative;
    display: block;
  }
}
.header__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: linear-gradient(
      135deg,
      var(--bg-secondary) 0%,
      var(--bg-primary) 100%
    );
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 20px;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--accent-color);
  }
  .header__nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at top right,
      rgba(0, 217, 255, 0.1) 0%,
      transparent 70%
    );
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .header__nav--active {
    right: 0;
  }
}
.header__link {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  /* position: relative; */
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}
.header__link:hover {
  color: var(--accent-color);
}
.header__link:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .header__link {
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .header__link::after {
    height: 2px;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.08s;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.16s;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.24s;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.32s;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
}
@media (max-width: 767px) {
  .header__nav--active .header__link:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.48s;
  }
}
.header__links {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 700;
  padding: 5px 12px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
}
.header__links:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .header__links {
    font-size: 18px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .header__nav--active .header__links {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.48s;
  }
}
.header__theme-btn {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1000;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}
.header__theme-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}
.header__theme-btn:active {
  transform: scale(0.95);
}
@media (max-width: 767px) {
  .header__theme-btn {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

.header__overlay {
  display: none;
}
@media (max-width: 767px) {
  .header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  .header__overlay--active {
    display: block;
    opacity: 1;
    pointer-events: all;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 750px;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(https://i.ibb.co/whv7wBRD/image.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  #hero {
    height: auto;
    min-height: 100vh;
    background-position: center center;
  }
}

.hero {
  height: 604px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (min-width: 1200px) {
  .hero {
    padding-top: 300px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .hero {
    padding-top: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 80px);
    padding: 100px 0 40px;
  }
}
@media (max-width: 767px) {
  .hero__wrapper {
    width: 100%;
  }
}
.hero__h1 {
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  text-align: start;
  color: var(--text-primary);
  font-size: 55px;
}
@media (max-width: 767px) {
  .hero__h1 {
    margin-top: 20px;
    width: 100%;
    font-size: 32px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .hero__h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .hero__h1-span {
    display: inline-block;
  }
}
.hero__subtitle {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  width: 350px;
  margin-top: 20px;
  text-align: start;
  color: var(--text-primary);
}
@media (max-width: 767px) {
  .hero__subtitle {
    width: 100%;
    max-width: 350px;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .hero__subtitle {
    font-size: 14px;
  }
}
.hero__wrappers {
  display: grid;
  justify-items: start;
}
@media (max-width: 767px) {
  .hero__wrappers {
    width: 100%;
  }
}
.hero__btn {
  padding: 20px 40px;
  background: var(--accent-color);
  border: 0;
  border-radius: 10px;
  margin-top: 30px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hero__btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 35px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hero__btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}
.hero__btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}
.hero__btn:active {
  transform: scale(0.98);
}

.hacaton {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .hacaton {
    display: block;
    margin-top: 20px;
  }
}
.hacaton__title {
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--text-primary);
  margin-top: 30px;
  font-size: 35px;
}
@media (max-width: 767px) {
  .hacaton__title {
    font-size: 28px;
    margin-top: 40px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .hacaton__title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .hacaton__wrapper {
    padding: 0 10px;
  }
}
.hacaton__wrappers {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hacaton__wrappers {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}
.hacaton__subtitle {
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  color: #bf6929;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--accent-color);
}
@media (max-width: 767px) {
  .hacaton__subtitle {
    margin-top: 30px;
    font-size: 22px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .hacaton__subtitle {
    font-size: 20px;
  }
}
.hacaton__img {
  width: 100%;
  height: 40vh;
  margin-left: 50px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .hacaton__img {
    margin: 20px 0 0 0;
    height: auto;
    max-height: 300px;
    width: 100%;
    max-width: 370px;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .hacaton__img {
    max-width: 350px;
    max-height: 250px;
  }
}
.hacaton__text {
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  width: 500px;
  color: var(--text-secondary);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hacaton__text {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .hacaton__text {
    width: 100%;
    max-width: 370px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hacaton__text {
    max-width: 350px;
    font-size: 15px;
  }
}

.stages {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .stages {
    margin-top: 50px;
  }
}
.stages__title {
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-primary);
}
@media (max-width: 767px) {
  .stages__title {
    font-size: 28px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .stages__title {
    font-size: 24px;
  }
}
.stages__text {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  color: #a7b7c0;
  font-weight: 400;
  line-height: 1.6;
  width: 300px;
  color: var(--text-primary);
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .stages__text {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .stages__text {
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }
}
.stages__subtitle {
  margin-top: 0;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .stages__subtitle {
    font-size: 18px;
    padding-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .stages__subtitle {
    font-size: 16px;
  }
}
.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .stages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
  }
}
.stages-div {
  background: linear-gradient(145deg, var(--accent-color), #a0522d);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .stages-div {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .stages-div {
    max-width: 350px;
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .stages-div:hover {
    transform: none;
  }
}

.conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .conditions {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .conditions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }
}
.conditions__title {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 100px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  .conditions__title {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 26px;
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .conditions__title {
    font-size: 22px;
  }
}
.conditions__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8b4513, #a0522d);
}
.conditions__card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 35px 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .conditions__card {
    padding: 30px 25px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .conditions__card {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .conditions__card {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .conditions__card {
    max-width: 350px;
    padding: 20px 15px;
  }
}
.conditions__card-h3 {
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 40px;
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  .conditions__card-h3 {
    font-size: 24px;
    margin-top: 30px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .conditions__card-h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .conditions__card:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.2);
  }
}
.conditions__icon {
  width: 60px;
  height: 60px;
  background: #bf6929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  color: #f4f6f7;
}
@media (max-width: 767px) {
  .conditions__icon {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
}
.conditions__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .conditions__card-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .conditions__card-title {
    font-size: 1.1rem;
  }
}
.conditions__card-text {
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .conditions__card-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .conditions__card-text {
    font-size: 0.9rem;
  }
}

.prize {
  padding: 80px 0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .prize {
    padding: 50px 0;
  }
}
.prize .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .prize .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .prize .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
}
.prize__content {
  padding-right: 20px;
}
@media (max-width: 767px) {
  .prize__content {
    padding-right: 0;
  }
}
.prize__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .prize__title {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .prize__title {
    font-size: 24px;
  }
}
.prize__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .prize__subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .prize__subtitle {
    font-size: 15px;
  }
}
.prize__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.prize__item {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .prize__item {
    flex-direction: column;
    padding: 15px 12px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .prize__item:hover {
    transform: none;
  }
}
.prize__icon {
  color: var(--bg-primary);
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  margin: 10px;
}
@media (max-width: 767px) {
  .prize__icon {
    margin: 5px 0 10px 0;
    font-size: 16px;
  }
}
.prize__link {
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-color);
  word-break: break-all;
}
@media (max-width: 767px) {
  .prize__link {
    font-size: 14px;
  }
}
.prize__text {
  line-height: 1.5;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .prize__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.prize__texts {
  line-height: 1.5;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
}
@media (max-width: 767px) {
  .prize__texts {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .prize__texts {
    font-size: 16px;
  }
}
.prize__text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.prize__highlight {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .prize__highlight {
    padding: 15px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .prize__highlight {
    font-size: 15px;
  }
}
.prize__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .prize__visual {
    order: -1;
    margin-bottom: 20px;
  }
}
.prize__img {
  width: 150%;
  height: 50vh;
  border-radius: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .prize__img {
    width: 100%;
    height: 40vh;
  }
}
@media (max-width: 767px) {
  .prize__img {
    width: 100%;
    max-width: 370px;
    height: auto;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
  }
}
@media (max-width: 480px) {
  .prize__img {
    max-width: 350px;
    max-height: 250px;
  }
}

.conditions__subtitle {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #1e180d;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 100px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
}
.conditions__subtitle::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8b4513, #a0522d);
}

.conditions-table,
.conditions-info {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .conditions-table,
  .conditions-info {
    margin: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}
.conditions-table table,
.conditions-info table {
  width: 100%;
  border-collapse: collapse;
  background: var(--text-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}
@media (max-width: 767px) {
  .conditions-table table,
  .conditions-info table {
    min-width: 100%;
    display: table;
    table-layout: fixed;
  }
}
.conditions-table th,
.conditions-info th {
  background: var(--table-header-bg);
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .conditions-table th,
  .conditions-info th {
    padding: 12px 10px;
    font-size: 14px;
  }
}
.conditions-table td,
.conditions-info td {
  padding: 18px 15px;
  border-bottom: 1px solid var(--border-color);
  color: var(--bg-primary);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .conditions-table td,
  .conditions-info td {
    padding: 12px 10px;
    font-size: 14px;
  }
}
.conditions-table a,
.conditions-info a {
  color: var(--bg-primary);
  text-decoration: none;
}
.conditions-table a:hover,
.conditions-info a:hover {
  color: var(--accent-color);
}

.conditions-table__number {
  text-align: center;
  font-weight: bold;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}
@media (max-width: 767px) {
  .conditions-table__number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  margin-top: 300px;
}
@media (max-width: 767px) {
  .btn {
    margin-top: 80px;
    padding: 0 15px;
  }
}
.btn_t {
  padding: 40px 60px;
  background: var(--accent-color);
  border: 0;
  border-radius: 15px;
  margin-top: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn_t {
    width: 100%;
    max-width: 370px;
    padding: 25px 40px;
    font-size: 22px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .btn_t {
    max-width: 350px;
    padding: 20px 35px;
    font-size: 20px;
  }
}
.btn_t:hover {
  background: var(--border-color);
  color: var(--text-primary);
}
.btn_t:active {
  transform: scale(0.98);
}

#footer {
  background: #342e27;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  #footer {
    width: 100%;
  }
}

.yandex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .yandex {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .yandex {
    flex-direction: column;
    gap: 20px;
  }
}
.yandex__img {
  width: 450px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .yandex__img {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .yandex__img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .yandex__img {
    max-width: 250px;
  }
}
.yandex__title {
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .yandex__title {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .yandex__title {
    font-size: 16px;
  }
}
.yandex__h2 {
  margin-top: 200px;
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  font-size: 64px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 767px) {
  .yandex__h2 {
    margin-top: 80px;
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .yandex__h2 {
    font-size: 28px;
  }
}

#footer {
  background: #342e27;
  width: 100%;
  overflow: hidden;
}

.footer {
  color: var(--text-primary);
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(139, 69, 19, 0.3);
}
.footer__partners {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__partners-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.footer__orgainz {
  margin-top: 80px;
}
.footer__img {
  width: 152px;
  height: 152px;
}
.footer__image {
  width: 40vh;
  height: 96px;
}
@media (max-width: 767px) {
  .footer__image {
    width: 100%;
    height: 20vh;
  }
}
.footer__text {
  font-family: "Montserrat", sans-serif;
  color: #f4f6f7;
  font-weight: 700;
  line-height: 1.3;
  width: 450px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__text {
    width: 300px;
  }
}
.footer__div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__div {
    display: block;
  }
}
.footer__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__logos {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
}
.footer__logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.footer__logo-item:hover {
  background: rgba(139, 69, 19, 0.2);
  transform: translateY(-5px);
}
@media (max-width: 767px) {
  .footer__logo-item {
    padding: 10px;
    height: 70px;
    width: auto;
    max-width: 120px;
  }
}
.footer__logo-img {
  max-height: 50px;
  max-width: 100%;
}
.footer__logo-item:hover .footer__logo-img {
  opacity: 1;
}
@media (max-width: 767px) {
  .footer__logo-img {
    min-height: 25px;
  }
}
.footer__main-content {
  display: flex;
  justify-content: space-around;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__main-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .footer__main-content {
    display: grid;
    grid-template-columns: repeat(1, 3fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 10px;
  }
}
.footer__nav,
.footer__contacts,
.footer__social {
  font-family: "Montserrat", sans-serif;
}
.footer__nav-title,
.footer__contacts-title,
.footer__social-title {
  margin-top: 20px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.footer__nav-list {
  list-style: none;
  padding: 0;
}
.footer__nav-list li {
  margin-bottom: 12px;
}
.footer__nav-link,
.footer__contact-link,
.footer__social-link,
.footer__legal-link {
  font-family: "Montserrat", sans-serif;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-link:hover,
.footer__contact-link:hover,
.footer__social-link:hover,
.footer__legal-link:hover {
  color: #a0522d;
}
.footer__address {
  font-style: normal;
}
.footer__contact-item {
  margin-bottom: 12px;
}
.footer__social-links {
  display: flex;
  gap: 15px;
}
.footer__social-link {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(139, 69, 19, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background: rgba(160, 82, 45, 0.6);
  transform: translateY(-2px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #999;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 0;
  }
}
.footer__legal {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .footer__legal {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__images {
  width: 48px;
  height: 48px;
}

#liga {
  width: 175px;
}
#ligaa {
  width: 245px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .hero__h1 {
    font-size: 24px;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .footer__logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 25px 0;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Comfortaa", cursive;
}
@media (max-width: 767px) {
  .countdown-timer {
    gap: 5px;
    padding: 12px 15px;
    margin: 20px 0;
  }
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}
@media (max-width: 767px) {
  .countdown-item {
    min-width: 45px;
  }
}

.countdown-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 2px 8px rgba(0, 217, 255, 0.4);
  line-height: 1;
}
@media (max-width: 767px) {
  .countdown-number {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .countdown-number {
    font-size: 1.5rem;
  }
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .countdown-label {
    font-size: 0.7rem;
    margin-top: 3px;
  }
}

.countdown-separator {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 0 2px;
  align-self: flex-end;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .countdown-separator {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .countdown-separator {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.countdown-number {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .countdown-number {
    animation: none;
  }
}
