@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Gehaks';
    src: url('assets/fonts/Gehaks-Regular.eot');
    src: url('assets/fonts/Gehaks-Regular.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/Gehaks-Regular.woff2') format('woff2'),
        url('assets/fonts/Gehaks-Regular.woff') format('woff'),
        url('assets/fonts/Gehaks-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Gehaks';
    background-color: #000000;
    color: #FFFFFF;
    font-size: 18px;
    width: 100vw;
}

section {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

#video-section {
    position: relative;
    z-index: 1;
    transition: opacity 1s ease-out;
}

#video-section.fade-out {
    opacity: 0;
    pointer-events: none;
}

#video-section video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

#background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

#background-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#text-section,
#form-section {
    position: relative;
    z-index: 2;
}

#text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    width: 40vw;
    margin: auto;
    min-width: 300px;
}

.text-animated {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    position: absolute;
    text-align: center;
    padding: 0 1rem;
    pointer-events: none;
}

.text-animated.active {
    opacity: 1;
    transform: scale(1);
}

/*
.text-animated-group {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    pointer-events: none;
}

.text-animated-group .risky-word {
    opacity: 0;
    display: inline-block;
    margin: 0 0.5rem;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.text-animated-group .risky-word.visible {
    opacity: 1;
    transform: scale(1);
}
*/

.risky-word {
  opacity: 0;
  display: inline-block;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.risky-word.visible {
  opacity: 1;
  transform: scale(1);
}

.text-line {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-line.visible {
  opacity: 1;
  transform: scale(1);
}

.text-block {
    text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
  width: 100%;
}

.text-block.visible-block {
  opacity: 1;
  position: relative;
}

.text-block.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}

#form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0 15px;
}

.form-container {
    max-width: 500px;
    width: 100%;
}

#cta-section {
    display: none;
    position: relative;
    z-index: 3;
}

#cta-section.show {
    display: block;
    animation: fadeIn 1s ease;
}

.btn_album {
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
}

.btn_album:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.4px;
    background-color: #FFFFFF;
    left: 0;
    right: 0;
    bottom: -1px;
}

.btn_replay {
    background-color: transparent;
    color: #FFFFFF;
    -webkit-appearance: none;
    outline: 0;
    border: 0;
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 1s ease;
}

.btn_replay:hover {
    opacity: 1;
}

.h2, h2 {
    font-size: 1.5rem;
}

.form-label {
    margin-bottom: 0;
    font-size: 16px;
    display: block;
}

.inputbb {
    font-family: "Roboto", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    padding: 10px 10px;
    color: #FFFFFF;
    outline: none;
    font-size: 16px;
}

.btn-primary, .btn-primary:active, .btn-primary:visited, .btn-primary:focus {
    background-color: #e1e1e1;
    color: #000000;
    border-radius: 0;
    border: 0;
    font-size: 18px;
    padding: 10px;
    outline: 0;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

.iti.iti--container {
    color: #000000;
    font-family: 'Roboto';
    font-size: 16px;
}

.iti__country-list {
/*    max-width: 500px;*/
    color: #000000;
    font-family: 'Roboto';
    font-size: 16px;
}

#audio-toggle {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    background-color: #FFFFFF;
    z-index: 2;
    border: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100px;
}

#audio-toggle.pulsing {
  animation: pulseGlow 2s infinite ease-in-out;
}

#audio-toggle svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.6)
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.6);
  }
}

footer {
    position: relative;
    text-align: center;
    font-size: 9px;
}

::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) { 

    

}