* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
}

body {
  height: 100vh;
 
  background: #000;
  color: #fff;
}

/* ФОН (город) */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('./1.jpg') center/cover no-repeat;
  filter: brightness(0.4);
  animation: zoom 20s ease-in-out infinite alternate;
}

/* затемнение */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 40%, #000 100%);
}

/* Заголовок */
.title {
  
  top: 60px;
  width: 100%;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.9;
  display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle {
   margin-bottom: 10px;
  top: 125px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  opacity: 0.7;
}
button.swal2-confirm.swal2-styled {
    display: none !important;
}
/* Карточка */
.form-box {
  position: relative;
  width: 490px;
  margin: auto;


    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(255, 120, 0, 0.15);
    animation: floatUp 0.8s ease;
}

.form-box h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.form-box p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Поля */
.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
}

input {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: rgba(0,0,0,0.25);
  color: #fff;
  transition: 0.2s;
}

input::placeholder {
  color: #666;
}

input:focus {
  outline: none;
  border-color: orange;
  box-shadow: 0 0 10px rgba(255,140,0,0.3);
}

 

/* Нижняя панель (как в монтаже) */
.bottom-bar {
 
  top: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0.7;
}


.container {
    padding: 120px 0;
}
.form-box{
      margin-top: 0px;
}
.bottom-bar i {
  font-size: 20px;
}

/* Анимации */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}


/* TIMELINE */
.timeline {
  margin-top: 40px;
 position: relative;
  width: 100%;
  padding: 15px 10px;
  display: flex;
      align-items: center;
    justify-content: center;
  background: linear-gradient(to top, #000, transparent);
}

/* дорожка */
.track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px;
  scroll-behavior: smooth;
 
    align-items: center;
    justify-content: center;
}

/* клипы */
.clip {
  min-width: 80px;
  height: 60px;
  border-radius: 8px;
 background-repeat: no-repeat !important;
  position: relative;
  border: 2px solid transparent;
}


.cl-1{
    background: url('./min1.jpg') center/cover;
   
}
.cl-2{
    background: url('./min2.jpg') center/cover;
   
}
.cl-3{
    background: url('./min3.jpg') center/cover;
   
}
.cl-4{
    background: url('./min4.jpg') center/cover;
   
}
.cl-5{
    background: url('./min5.jpg') center/cover;
   
}

.cl-6{
    background: url('https://minskworld.by/wp-content/themes/minsk/img/logo_footer.png') center/cover;
   
}

/* активный клип */
.clip.active {
  border-color: orange;
}

/* время */
.clip span {
  
  bottom: 3px;
  right: 5px;
  font-size: 10px;
  background: rgba(0,0,0,0.6);
  padding: 2px 4px;
  border-radius: 4px;
}

/* вертикальный курсор */
.playhead {
     top: 5px; 
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    position: absolute;
    height: 100px;
    display: block;
}

/* аудио дорожка */
.audio-wave {
  height: 30px;
  margin: 5px 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.audio-wave div {
  width: 3px;
  height: 10px;
  background: orange;
  animation: wave 1s infinite ease-in-out;
}

.audio-wave div:nth-child(2){ height:15px; animation-delay:0.1s;}
.audio-wave div:nth-child(3){ height:20px; animation-delay:0.2s;}
.audio-wave div:nth-child(4){ height:12px; animation-delay:0.3s;}
.audio-wave div:nth-child(5){ height:18px; animation-delay:0.4s;}

@keyframes wave {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(1.8); }
}



/* ===== REC UI ===== */
.rec-ui {
  position: fixed;
  top: 12px;
  left: 12px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 6px 10px;
  border-radius: 10px;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);

  font-size: 13px;
  z-index: 999;
}

/* red blinking dot */
.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 10px red;
  animation: blink 1s infinite;
}

.rec-text {
  font-weight: 700;
  letter-spacing: 1px;
}

.rec-time {
  opacity: 0.8;
  font-size: 12px;
}

/* blinking animation */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* ===== CAMERA FRAME EFFECT ===== */
.camera-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;

  border: 2px solid rgba(255,255,255,0.08);

  /* cinematic vignette like camera UI */
  box-shadow:
    inset 0 0 120px rgba(0,0,0,0.7),
    inset 0 0 40px rgba(255,140,0,0.1);

  z-index: 10;
}

 .swal2-popup.swal2-modal.swal2-icon-success.swal2-show,
.swal2-popup.swal2-modal.swal2-icon-error.swal2-show {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(255, 120, 0, 0.15);
    animation: floatUp 0.8s ease;
}
 .swal2-html-container,.swal2-title {
    color: #fff !important;
}

.swal2-success-circular-line-left {
    background: transparent !important;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{
      background: transparent !important;
}
.swal2-success-fix{
      background: transparent !important;
}

div#swal2-html-container a {
    color: #fff;
}
.div__logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}



a.link__rules{  
      color: #c3c3c3;
    text-align: center;
    display: flex;
    margin-top: 20px;
}



/* Строка настройки */
.setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Переключатель */
.switch {
    position: relative;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background-color: #e5e5ea;
    border-radius: 34px;
    transition: 0.3s;
}

/* ON / OFF текст */
.slider::after {
    content: "Нет";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #8e8e93;
    font-weight: bold;
}

.slider::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    left: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Активное состояние */
input:checked + .slider {
    background-color: #34c759;
}

input:checked + .slider::after {
    content: "Да";
    left: 10px;
    right: auto;
    color: white;
}

input:checked + .slider::before {
    transform: translateX(26px);
}

/* Кнопка */
button {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 16px;
    border-radius: 14px;
    border: none;
    background: #d1d1d6;
    color: #8e8e93;
    cursor: not-allowed;
    transition: 0.3s;
}

 
/* КНОПКА */
button.active {
  
 
  
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #ff5e00, #ff9a00);
   
  transition: 0.3s;
}

button.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,120,0,0.4);
}







 


.imgB{
    width: 90px;
    height: auto;
    position: absolute;
    right: -15px;
    top: -25px;
    filter: grayscale(100);
}



/* Общий стиль */
.title, .subtitle, .date {
  
    letter-spacing: 3px;
}

/* НЕОНОВЫЙ заголовок */
.title {
    font-size: 70px;
    font-weight: 900;
    color: #fff;

    text-shadow:
        0 0 5px #082851,
        0 0 10px #082851,
        0 0 20px #082851,
        0 0 40px #082851,
        0 0 80px #082851;

    animation: flicker 3s infinite alternate;
}

/* Подзаголовок */
.subtitle {
    font-size: 30px;
    color: #fff;

    text-shadow:
        0 0 5px #082851,
        0 0 10px #082851,
        0 0 20px #082851,
        0 0 40px #082851;

    animation: glow 3s ease-in-out infinite alternate;
}

/* Дата */
.date {
    font-size: 22px;
    color: #fff;
margin: 0 auto;
margin-bottom: 30px;
display: flex;
align-items: center;
justify-content:center;
    text-shadow:
        0 0 5px #082851,
        0 0 10px #082851,
        0 0 20px #082851;

    opacity: 0.8;
}

/* Мерцание как у неона */
@keyframes flicker {
    0% { opacity: 1; }
    45% { opacity: 0.85; }
    50% { opacity: 0.4; }
    55% { opacity: 0.9; }
    70% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Плавное свечение */
@keyframes glow {
    from {
        text-shadow:
            0 0 5px #082851,
            0 0 10px #082851,
            0 0 20px #082851;
    }
    to {
        text-shadow:
            0 0 10px #082851,
            0 0 20px #082851,
            0 0 40px #082851;
    }
}




#do_16{
  display: none;
}

@media only screen and (max-width: 992px) {

  .form-box h2 {
    margin-bottom: 10px;
    font-size: 22px;
    max-width: 200px;
}
  .clip{
     /*background-repeat: no-repeat;*/
  }
    .form-box {
        width: 90%;
        margin: 0 AUTO;
    }
  .title{
        font-size: 60px;
          margin-bottom: 10px;
  }

  .form-box{
       
  }


.date{
  font-size: 16px;
}

    .subtitle {
        margin-bottom: 15px;
        font-size: 23px;
    }
  .bottom-bar{
        top: 150px;
  }

  body {
      height: auto;
      overflow: SCROLL;
      background: #000;
      color: #fff;
  }
  .timeline{
  position: relative;
  }


  
}