body {
    margin: 0;
    padding: 0;
    padding-top: var(--navbar-height); /* отступ равен высоте шапки */
    box-sizing: border-box;
    background: white;
    color: #002244;
    font-family: "Segoe UI", sans-serif;
}


/* ===== ШАПКА ===== */
:root {
    --navbar-height: 60px; /* точная высота шапки */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height); /* фиксированная высота */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw; /* только горизонтальные отступы */
    background: #e6f0ff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    box-sizing: border-box;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0; /* запрещаем сжиматься */
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;           /* делаем flex для вертикального центрирования */
    align-items: center;     /* выравнивание по вертикали */
    font-weight: bold;
    color: #004b9f;          /* более синий цвет */
    font-size: 20px;
    text-decoration: none;
}


/* Ссылки слева и справа */
.nav-link {
    color: #004b9f;
    text-decoration: none;
    transition: 0.2s;
}

.nav-link:hover {
    color: #007bff;
}

.nav-button {
    background: #004b9f;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: 0.2s;
}

.nav-button:hover {
    background: #007bff;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #007bff;
}

.mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    z-index: 1000; /* 🔥 теперь меню поверх всего */
}


.mobile-link, .mobile-button {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #004b9f;
}

.mobile-button {
    background: #007bff;
    color: white;
    border-radius: 6px;
    margin: 10px auto;
    width: 80%;
}

@media (max-width: 768px) {
    .nav-left a:not(.nav-logo), .nav-right {
        display: none;
    }
    .burger {
        display: block;
    }
}


/* ===== ГЛАВНАЯ СТРАНИЦА ===== */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #e6f0ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* чтобы не закрывало шапкой */
}

.hero-inner h1 {
    font-size: 48px;
    color: #003a8c;
    margin-bottom: 10px;
}

.hero-inner p {
    color: #004b9f;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-button {
    background: #007bff;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}

.hero-button:hover {
    background: #005dc1;
}


.logo-img {
    height: 35px;          /* высота логотипа, можно менять */
    width: auto;           /* сохраняем пропорции */
    vertical-align: middle;
    margin-right: 10px;    /* расстояние до текста */
}

/* Если на мобильном экране нужно уменьшить размер */
@media (max-width: 768px) {
    .logo-img {
        height: 30px;
        margin-right: 5px;
    }
}


/* ===== Карусель ===== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    user-select: none;         /* нельзя выделять */
    -webkit-user-drag: none;   /* нельзя перетаскивать */
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;      /* блокирует контекстное меню по ПКМ */
}

/* ===== Точки под каруселью ===== */
.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: #007BFF;
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .carousel-dots .dot {
        width: 5px;   /* в 2 раза меньше */
        height: 5px;  /* в 2 раза меньше */
        margin: 0 3px; /* расстояние между точками тоже уменьшаем */
    }

    .carousel-dots .dot.active {
        transform: scale(1.2); /* масштаб активной точки чуть меньше */
    }
}


/* ===== Текстовый блок под каруселью ===== */
.about-section {
    max-width: 60%;
    margin: 60px auto;
    text-align: center;
    color: #003366; /* глубокий синий */
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .about-section {
        max-width: 70%;
        font-size: 1rem;
        padding: 20px;
    }
}

.join-section {
  text-align: center;
  padding-top: 5px;    /* маленький отступ сверху */
  padding-bottom: 5px; /* большой отступ снизу */
  padding-left: 5%;
  padding-right: 5%;
  background: #ffffff;
}

.join-title {
  color: #004b9f;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.join-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Кнопка как ссылка */
.join-btn {
  --btn-color: #4a86e8; /* основное значение по умолчанию */

  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--btn-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.5s ease, background 0.5s ease;
  text-decoration: none; /* убираем подчеркивание ссылки */
}

/* Масштабирование при hover */
.join-btn:hover {
  transform: scale(1.08);
}

/* Фоновый слой */
.bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px;
  z-index: 0;
}

/* Появление фона при hover */
.join-btn:hover .bg-overlay {
  opacity: 1;
}

/* Текст кнопки */
.btn-text {
  position: relative;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 1.5s ease, backdrop-filter 1.5s ease;
}

/* Блюр под текстом при hover */
.join-btn:hover .btn-text {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

/* Мобильная версия — экран до 768px */
@media (max-width: 768px) {

  /* Заголовок меньше */
  .join-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  /* Кнопки — по 2 в ряд */
  .join-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Простые кнопки без анимаций */
  .join-btn {
    --btn-color: #4a86e8; /* серый для мобильных кнопок */
    aspect-ratio: 16/9;
    font-size: 0.9rem;
    background-color: var(--btn-color);
    color: #fff;
    border-radius: 15px;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: none; /* отключаем все анимации */
  }

  /* Полностью скрываем overlay */
  .join-btn .bg-overlay {
    display: none !important;
  }

  /* Текст без блюра */
  .join-btn .btn-text {
    background: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    z-index: 2;
  }

  /* hover для мобильных отключаем */
  .join-btn:hover {
    transform: none !important;
    background-color: #4a86e8 !important;
  }
  /* Все состояния берут цвет из переменной */
  .join-btn:hover,
  .join-btn:active,
  .join-btn:focus {
    transform: none !important;
    background-color: var(--btn-color) !important;
    outline: none;
  }
}

/* CSS-переменные для легкой смены цветов */
:root {
  --info-heading-color: #004b9f;   /* цвет заголовков колонок */
  --info-link-color: #7f7f7f;   /* цвет ссылок */
  --info-link-hover: #0f0f0f;   /* цвет ссылок при наведении */
}

/* Общий блок */
.info-section {
  background-color: #f2f2f2; /* светло-серый фон */
  padding: 40px 5% 60px; /* сверху 80px, снизу 60px, боковые 5% */
  margin-top: 80px;           /* отступ от предыдущего блока */
  text-align: center; /* центрирование заголовков и ссылок */
}

/* Контейнер с колонками */
.info-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* перенос колонок на узких экранах */
}

/* Каждая колонка */
.info-column {
  flex: 1 1 200px; /* минимум 200px, растягивается */
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  text-align: center; /* центрирование текста */
}

/* Разделители между колонками */
.info-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #d0d0d0; /* тонкая линия */
}

/* Заголовки колонок */
.info-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--info-heading-color);
}

/* Список ссылок */
.info-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-column ul li {
  margin-bottom: 8px;
}

.info-column ul li a {
  color: var(--info-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-column ul li a:hover {
  color: var(--info-link-hover);
  text-decoration: underline;
}

/* Мобильная версия — колонки по одной */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
  }

  .info-column {
    padding: 15px 0;
  }

  .info-column:not(:last-child)::after {
    display: none;
  }
}

/* ====== Мобильная версия ====== */
@media (max-width: 768px) {
  .info-columns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .info-column {
    width: 100%;
    border-top: 1px solid #ccc; /* тонкая горизонтальная линия между разделами */
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .info-column:first-child {
    border-top: none; /* у первого раздела линии нет */
  }

  .info-column h3 {
    font-size: 18px;
  }

  .info-column a {
    font-size: 15px;
  }
}


/* Общий контейнер страницы */
html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* высота страницы не меньше окна */
}

.content {
    flex: 1; /* основной контент занимает всё доступное пространство */
}

/* Стили футера */
.footer-info {
    background-color: #4a86e8;
    text-align: center;
    padding: 15px 5%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* Адаптивно для мобильных устройств */
@media (max-width: 768px) {
    .footer-info {
        font-size: 14px;
        padding: 12px 5%;
    }
}




/* ===== Блок регламента в стиле about-section, без рамки ===== */
.reglament-block {
    max-width: 60%; /* ширина как у about-section */
    margin: 60px auto; /* центр по горизонтали */
    display: flex;
    align-items: center;
    background: #ffffff; /* белый фон */
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reglament-block:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.reglament-button {
    background: #4a86e8;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;       /* внутренние отступы */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 180px;             /* фиксированная ширина */
    height: 65px;             /* фиксированная высота */
    min-width: 180px;         /* чтобы не сжималась на мобильных */
    max-width: 180px;         /* чтобы не растягивалась */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.reglament-button:hover {
    background: #3b6fc4;
    transform: translateY(-2px);
}

/* Текст справа от кнопки */
.reglament-text {
    margin-left: 20px;
    font-size: 16px;
    color: #003366;
    line-height: 1.5;
}


/* Десктоп: текст справа от кнопки */
@media (min-width: 769px) {
    .reglament-text {
        order: 2; /* текст после кнопки */
    }
    .reglament-button {
        order: 1; /* кнопка первая */
    }
}

/* Мобильная версия: текст сверху, кнопка снизу */
@media (max-width: 768px) {
    .reglament-block {
        flex-direction: column; /* вертикально */
        text-align: center;
    }
    .reglament-text {
        margin-left: 0;
        margin-bottom: 12px; /* отступ под текстом */
        order: 1; /* текст первый */
    }
    .reglament-button {
        order: 2; /* кнопка под текстом */
    }
}


.section-divider {
    width: 70%;               /* ширина линии (можно менять на 60%, 80% и т.д.) */
    height: 1px;              /* толщина линии */
    background-color: #ccc;   /* цвет линии — можно заменить, например #4a86e8 */
    margin: 40px auto;        /* отступы сверху и снизу + центрирование */
    border-radius: 2px;       /* лёгкое сглаживание краёв */
    opacity: 0.7;             /* чуть прозрачная, чтобы выглядела мягче */
}


:root{
  --card-radius: 20px;
  --card-bg: #ffffff;
  --card-shadow: 0 8px 28px rgba(20, 20, 40, 0.08);
  --text-color: #1b1b1b;
}
/* Запрет перетаскивания и выделения изображения */
.no-drag {
  user-select: none;       /* нельзя выделить */
  -webkit-user-drag: none; /* для Chrome/Safari */
  -moz-user-select: none;
  -ms-user-select: none;
  user-drag: none;
  pointer-events: none;    /* запрет кликов по фото */
}

/* Контекстное меню */
.about-card__image {
  pointer-events: none;    /* отключает правый клик */
}
/* Контейнер карточки */
.about-card{
  width: 70%;                   /* 70% ширины экрана на десктопе */
  margin: 40px auto;
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow); /* тень всегда видна */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* удаляем transition и hover-анимацию */
}

/* Фото сверху, с обрезанными только верхними углами */
.about-card__image{
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: cover;
}

/* Текстовый блок */
.about-card__body{
  padding: 28px 36px 36px;
  color: var(--text-color);
  background-color: #f5f8ff;
}

.about-card__title{
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
}

.about-card__text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Адаптив */
@media (max-width: 768px){
  .about-card{
    width: 90%;                /* 90% ширины экрана на мобильных */
    margin: 24px auto;
  }
  .about-card__body{
    padding: 20px;
  }
  .about-card__title{
    font-size: 1.4rem;
  }
  .about-card__text{
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


.photo-gallery-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.photo-gallery-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.photo-gallery-collage{
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.row{
  display: flex;
  gap: 10px;
}

.gallery-card{
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.25s ease;
}

.gallery-card img{
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-card:hover{
  transform: scale(1.02);
}

/* overlay */
#lightbox-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;               /* показываем через JS */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* крестик */
#lightbox-close{
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index:10010;
  padding: 6px;
}

/* Сам блок с картинкой: background-image, без <img> */
#lightbox-photo{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain; /* ключ: сохраняет пропорции и помещает картинку целиком */
  /* по умолчанию нулевой размер — JS выставит реальные width/height */
  width: 0;
  height: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  border-radius: 4px;
  /* запрещаем pointer-events внутри блока, чтобы браузер не показывал подсказки;
     клик на overlay (вне этого блока) закроет лайтбокс */
  pointer-events: none;
}

/* делаем overlay кликабельным, но внутри клики не передаются браузеру на изображение */
#lightbox-overlay.open { display: flex; }

/* адаптив: максимум по окну */
:root{
  --lightbox-max-w: 95vw;
  --lightbox-max-h: 95vh;
}

@media(max-width: 768px){
  .photo-gallery-collage{
    width: 95%;
  }
}




.contacts-section {
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  padding: 25px;
  background-color: #f5f8ff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  color: #111;
}

.contacts-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}

.contacts-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.contacts-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-role {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-name {
  margin-bottom: 5px;
}

.contact-phone, .contact-email {
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .contacts-section {
    width: 90%;
    padding: 15px;
  }
  .contacts-title {
    font-size: 22px;
  }
  .contacts-subtitle {
    font-size: 14px;
  }
  .contact-item {
    padding: 10px 12px;
  }
}

.contact-person {
  margin-bottom: 30px; /* отступ после каждого человека */
}


.results-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.result-button {
    flex: 1 1 200px; /* минимальная ширина 200px, растягивается */
    max-width: 250px;
    height: 80px;
    background-color: #0072c6; /* синий оттенок */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    line-height: 80px;
    transition: background 0.3s;
}

.result-button:hover {
    background-color: #005a9e;
}

@media (max-width: 900px) {
    .result-button {
        flex: 1 1 40%;
    }
}

@media (max-width: 600px) {
    .result-button {
        flex: 1 1 80%;
    }
}


.copy-email {
    color: #0072c6;
    cursor: pointer;
    text-decoration: underline;
}
.copy-email:hover {
    color: #005a9e;
}

#copy-notice {
    display: block;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 114, 198, 0.6);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 1000;

    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* НЕ мешает кликам */
}

#copy-notice.show {
    opacity: 1;
    pointer-events: auto; /* когда видим — клики не блокируем (например, если хотим закрыть по клику) */
}




/* ===== Общие стили (ПК) ===== */
.results-section {
  width: 90%;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.result-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

.result-block {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.result-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.result-row.header {
  background-color: #f0f0f0;
  font-weight: bold;
}

.cell {
  padding: 12px 15px;
  flex: 1;
  text-align: left;
}

.cell {
    padding: 12px 15px;
    text-align: left;
}

/* Общий flex можно убрать */
.cell.place {
    width: 60px; /* узкий столбик для номера места */
    font-weight: bold;
    flex: 0 0 auto; /* не растягивается */
}

.cell.team {
    flex: 2; /* название команды чуть шире */
}

.cell.score1,
.cell.score2,
.cell.total {
    flex: 1; /* баллы – стандартная ширина */
}

.cell.organization {
    flex: 7; /* организация самая широкая колонка */
}

/* Анимации для блеска */
@keyframes shimmerA {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 0%; }
}
@keyframes shimmerB {
    0% { background-position: 50% 50%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 50% 50%; }
}
@keyframes shimmerC {
    0% { background-position: 100% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 100% 0%; }
}

/* Золото – более насыщенный перелив */

.result-row.first {
    background: 
        linear-gradient(120deg, #FFB800 0%, #FFD700 25%, #FFC400 50%, #FFD700 75%, #FFB800 100%) no-repeat,
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.8), transparent 50%);
    background-size: 300% 300%;
    animation: shimmerA 3s ease-in-out infinite,
               shimmerB 4s ease-in-out infinite,
               shimmerC 3.5s ease-in-out infinite;
}



/* Серебро */
.result-row.second {
    background: 
        linear-gradient(120deg, #AFAFAF 0%, #E6E6E6 25%, #CCCCCC 50%, #E6E6E6 75%, #AFAFAF 100%) no-repeat,
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.4), transparent 50%);
    background-size: 300% 300%;
    animation: shimmerA 5s ease-in-out infinite,
               shimmerB 4s ease-in-out infinite,
               shimmerC 3s ease-in-out infinite;
}

/* Бронза */
.result-row.third {
    background: 
        linear-gradient(120deg, #C05620 0%, #E38C5B 25%, #D87045 50%, #E38C5B 75%, #C05620 100%) no-repeat,
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.35), transparent 50%);
    background-size: 300% 300%;
    animation: shimmerA 3s ease-in-out infinite,
               shimmerB 6s ease-in-out infinite,
               shimmerC 4s ease-in-out infinite;
}

.result-row.first .cell,
.result-row.second .cell,
.result-row.third .cell {
  color: #000;
  font-weight: bold;
}

/* ===== Мобильная версия ===== */
@media (max-width: 768px) {
  .result-row.header .cell.score1,
  .result-row.header .cell.score2,
  .result-row.header .cell.total,
  .result-row.header .cell.organization,
  .result-row .cell.score1,
  .result-row .cell.score2,
  .result-row .cell.total,
  .result-row .cell.organization {
    display: none;
  }

  .result-row {
    font-size: 14px;
    cursor: pointer;
    flex-direction: row;
    position: relative;
  }

  .cell {
    padding: 10px;
  }


  .details .line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 6px 0;
  }

  .details .line:last-child {
    border-bottom: none;
  }

  .result-row.active + .details {
    display: block;
    animation: fadeIn 0.25s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Скрываем все детали по умолчанию */
.details {
  display: none; /* по умолчанию скрыты */
}

/* ===== Мобильная версия ===== */
@media (max-width: 768px) {
  .details {
    display: none; /* на мобильной версии будут показаны при клике */
    background: #fff;
    border-radius: 10px;
    margin: 6px 10px 12px;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-size: 13px;
    color: #333;
    border: 1px solid #ddd;
  }

  .result-row.active + .details {
    display: block;
    animation: fadeIn 0.25s ease;
  }
}



.events-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.events-title {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}

/* --- Блок мероприятия --- */
.event-block {
  display: flex;
  align-items: center;
  width: 90%;
  height: 80px; /* тонкий блок для десктопа */
  background-color: #f0f4ff;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Левая часть - название */
.event-left {
  padding: 0 20px;
  font-weight: bold;
  flex: 0 0 350px; /* шире для длинных названий */
  color: #004b9f;
  font-size: 1.2em;
}

/* Средняя часть - описание + дата с вертикальной линией */
.event-middle {
  padding: 0 20px;
  border-left: 1px solid #ccc;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9em;
  color: #777;
}

.event-date {
  font-size: 0.85em;
  color: #888;
  margin-top: 5px;
}

/* Правая часть - фото */
.event-right {
  flex: 0 0 280px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

/* --- Мобильная версия --- */
@media (max-width: 768px) {
  .events-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .event-block {
    flex-direction: row;
    height: 160px; /* выше для мобильного */
    margin-bottom: 15px;
  }

  .event-left {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 0.9em;
    padding: 10px 15px;
  }

  /* скрываем десктопную среднюю часть */
  .event-middle {
    display: none;
  }

  /* описание и дата внутри левой части через data-атрибуты */
  .event-left::after {
    content: attr(data-desc) "\A" attr(data-date);
    white-space: pre;
    font-size: 0.85em;
    color: #777;
    margin-top: 5px;
  }

  .event-right {
    flex: 0 0 140px;
    height: 100%;
  }

  .event-img {
    width: 100%;
    height: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }

  .event-left h3 {
    margin: 0 0 5px 0;
    font-size: 1em;
  }
}

/* ===== Блок регистрации ===== */
.techno-register-section {
    width: 60%;
    margin: 60px auto;
    padding: 60px 30px 30px 30px;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}
.techno-switch-panel { position:absolute; top:0; left:0; width:100%; display:flex; border-radius:20px 20px 0 0; overflow:hidden; }
.techno-switch-btn { flex:1; padding:15px 0; border:none; cursor:pointer; font-weight:bold; background-color:#9099a8; color:#fff; transition:0.3s; }
.techno-switch-btn.techno-active { background-color:#4a86e8; }
.techno-form-fields { display:flex; flex-direction:column; gap:15px; margin-top:60px; }
.techno-register-section input, .techno-register-section select { padding:12px; border-radius:10px; border:2px solid rgba(74,134,232,0.3); outline:none; transition:0.3s; }
.techno-register-section input:focus, .techno-register-section select:focus { border:2px solid #4a86e8; box-shadow:0 0 5px rgba(74,134,232,0.4); }
.techno-submit-btn { margin-top:15px; padding:12px; border-radius:10px; border:none; font-weight:bold; cursor:pointer; background-color:#4a86e8; color:#fff; transition:0.2s; }
.techno-submit-btn:hover { transform:scale(1.05); }
/* ===== Галочка с текстом по центру ===== */
.techno-checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center; /* по центру */
    gap: 10px;
    margin-top: 10px;
}

.techno-checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.techno-checkbox-container label {
    font-size: 1rem;
    cursor: pointer;
}
@media(max-width:768px){.techno-register-section{width:90%; padding:50px 20px 20px 20px;} .techno-switch-btn{padding:12px 0;font-size:0.9rem;} .techno-register-section input, .techno-register-section select{padding:10px;font-size:0.95rem;} .techno-submit-btn{padding:10px;font-size:0.95rem;}}
/* ===== Адаптив для телефонов ===== */
@media (max-width: 768px) {
    .techno-register-section {
        width: 90%; /* ширина блока 90% */
        padding: 50px 20px 20px 20px;
    }

    .techno-switch-btn {
        padding: 12px 0;
        font-size: 0.85rem; /* чуть меньше шрифт кнопок */
    }

    .techno-register-section input,
    .techno-register-section select {
        padding: 10px;
        font-size: 0.9rem; /* немного меньше текст в полях */
    }

    .techno-submit-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .techno-checkbox-container label {
        font-size: 0.85rem; /* уменьшение шрифта для галочек */
    }
}