*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Spacing System */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 0.75rem;   /* 12px */
  --spacing-lg: 1rem;      /* 16px */
  --spacing-xl: 1.0rem;   /* 20px */
  --spacing-2xl: 1.5rem;   /* 24px */
  --spacing-3xl: 2rem;     /* 32px */
  
  /* Colors */
  --primary-bg: #3d3062;
  --secondary-bg: #6f366f;
  --accent-color: #6f366f;
  --text-primary: #ffffff;
  --text-dark: #1C1A1C;
  --text-muted: #696969;
  --border-color: #ccc;
  --success-bg: #FEF7D1;
  --error-bg: #FCE8DB;
  
  /* Component Colors */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-hover: rgba(255, 255, 255, 0.2);
  --footer-bg: rgba(0, 0, 0, 0.5);
  
  /* Border Radius */
  --radius-sm: 0.5rem;     /* 8px */
  --radius-md: 0.75rem;    /* 12px */
  --radius-lg: 1rem;       /* 16px */
  --radius-xl: 1.25rem;    /* 20px */
  --radius-full: 50rem;    /* pill shape */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  
  /* Typography */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Breakpoints (for reference) */
  --bp-sm: 30rem;    /* 480px */
  --bp-md: 48rem;    /* 768px */
  --bp-lg: 64rem;    /* 1024px */
  --bp-xl: 80rem;    /* 1280px */
}

body, h1, h2, ul, li, p {
  margin: 0;
  padding: 0;
}

h1, h2 {
  max-width: 80vw;
  margin: auto;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-bg);
  background: -webkit-linear-gradient(170deg, var(--primary-bg) 0%, var(--primary-bg) 50%, var(--secondary-bg) 100%);
  background: linear-gradient(170deg, var(--primary-bg) 0%, var(--primary-bg) 70%, var(--secondary-bg) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

header {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  color: var(--text-primary);
  padding: var(--spacing-lg);
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.Navigation-Links {
  width: 100%;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  align-items: center;
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline;
  transition: 0.3s ease-in-out;
}

nav ul li:hover {
  transform: scale(1.05);
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: bold;
}

nav a img {
  width: 2.5rem;
  vertical-align: middle;
  margin: var(--spacing-sm) var(--spacing-lg);
}

.brand-logo {
  z-index: 999;
}

.lang-menu {
  width: 7.5rem;
  text-align: right;
  font-weight: bold;
  position: relative;
  height: 3.125rem;
}

.lang-menu .selected-lang {
  display: flex;   
  justify-content: space-between;
  line-height: 2;
  cursor: pointer;
}

.lang-menu .selected-lang:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}

.lang-menu ul {
  margin: 0;
  padding: 0;
  display: none;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  position: absolute;
  margin-top: 10px;
  top: 30px;
  right: 0px;
  width: 130px;
  border-radius: 5px;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.lang-menu ul li {
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.lang-menu ul li a {
  text-decoration: none;
  width: 130px;
  padding: 5px 10px;
  display: block;
}

.lang-menu ul li:hover {
  background-color: #f2f2f2;
}

.lang-menu ul li a:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.de:before {
  background-image: url(https://assets.musikerkennung.com/germany.png);
}

.en:before {
  background-image: url(https://assets.musikerkennung.com/usa.png);
}

.lang-menu:hover ul {
  display: block;
}

.lang-menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
  padding: 5px;
}

.lang-menu-dropdown {
  width: 120px;
  text-align: right;
  font-weight: bold;
  position: absolute;
  cursor: pointer; 
}

.selected-lang-dropdown img {
  vertical-align: middle;
}

.lang-menu-dropdown .selected-lang {
  display: flex;   
  justify-content: space-between;
  line-height: 2;
}

.lang-menu-dropdown .selected-lang:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}

.lang-menu-dropdown ul {
  margin: 0;
  display: none;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  position: relative;
  padding: 1px;
  top: 10px;
  right: 0px;
  width: 130px;
  height: 70px;
  border-radius: 5px;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.lang-menu-dropdown ul li {
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.lang-menu-dropdown ul li a {
  text-decoration: none;
  width: 130px;
  padding: 5px 10px;
  display: block;
}

.lang-menu-dropdown ul li:hover {
  background-color: #f2f2f2;
}

.lang-menu-dropdown ul li a:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.de:before {
  background-image: url(https://assets.musikerkennung.com/germany.png);
}

.en:before {
  background-image: url(https://assets.musikerkennung.com/usa.png);
}

.lang-menu-dropdown:hover ul {
  display: block;
}

.hamburger {
  cursor: pointer;
  display: none;
  top: 1;
  z-index: 999;
}

.fixed {
  position: fixed;
  left: 90%;
}

.hamburger input {
  display: none;
  z-index: 999;
}

.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* .drop-down-menu-open {
  overflow-y: hidden;
} */

.drop-down-menu {
  contain: paint;
  overscroll-behavior: contain;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(2, 12, 51, 0.5);
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 990;
  backdrop-filter: blur(7px);
  transition: 0.3s ease-in-out;
}

.drop-down-navigation-links {
  position: relative;
  margin: auto;
  width: 100%;
  margin: 90px 0px 0px 0px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  color: #ffffff;
}

.drop-down-navigation-links a {
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  min-width: 200px;
  margin: 5px;
  padding: 5px 5px;
  background: rgba(28,26,28,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.15);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.drop-down-navigation-links ul {
  list-style: none; 
}

.drop-down-navigation-links a:hover {
  transform: scale(1.02);
}

.drop-down-navigation-links a text {
  margin: auto;
  width: auto;
}

.drop-down-navigation-links img {
  width: 25px;
  vertical-align: middle;
  margin: 5px 10px 5px 10px;
}

main {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--text-primary);
  padding: 0 var(--spacing-lg);
  gap: var(--spacing-xl);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* AdSense optimized containers */
.ad-container {
  width: 100%;
  max-width: 970px;
  margin: var(--spacing-2xl) auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
}

.ad-container.mobile {
  max-width: 320px;
  min-height: 50px;
}

.content-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: center;
}

/* Ensure proper spacing around ads for better visibility */
.content-block {
  margin-bottom: var(--spacing-3xl);
}

.content-block:last-child {
  margin-bottom: var(--spacing-xl);
}

h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-xl);
}

h2 {
  margin-bottom: var(--spacing-xl);
}

form input[type="file"] {
  display: block;
  margin: 0 auto;
  padding: var(--spacing-lg);
  width: 80%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

form button {
  display: none;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-lg) var(--spacing-xl);
  background-color: var(--text-dark);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: bold;
}

footer {
  position: relative;
  padding: var(--spacing-lg) 0;
  margin-top: var(--spacing-3xl);
  background: var(--footer-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-container {
  padding: var(--spacing-lg);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  line-height: 1.5rem;
  margin: auto;
  gap: var(--spacing-xl);
}

.website-info {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 0px;
  align-items: center;
}

.footer-logo {
  margin-bottom: 15px;
}

.website-info p {
  text-align: center;
}

.footer-links-container {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 50%;
}

.footer-links {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 var(--spacing-lg);
  text-align: left;
  gap: var(--spacing-sm);
}

.footer-links p {
  margin-bottom: var(--spacing-lg);
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 0.8;
}

.status-button {
  cursor: pointer;
  font-weight: 700;
  /* font-family: Helvetica,"sans-serif"; */
  transition: all .3s;
  padding: 8px 8px;
  border-radius: 50px;
  background: rgb(17, 17, 17);
  color: #ffffff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 5px;
  font-size: 12px;
}

.status-button:hover {
  background: rgb(20, 20, 20);
}

.status-button > svg {
  width: 34px;
  margin-left: 3px;
  transition: transform .3s ease-in-out;
}

.status-button:hover svg {
  transform: translateX(5px);
}

.status-button:hover span {
  transition: transform .3s ease-in-out;
  transform: scale(1.05);
}

.status-button:active {
  transform: scale(0.95);
}

.link-form-container {
  transition: all 0.3s ease-in-out;
}

.link-form-text {
  color: #ffffff;
  max-width: 700px;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: bold;
  padding: clamp(8px, 2vw, 10px);
  margin: auto;
  text-align: center;
}

.link-form-icon {
  margin-top: 0px;
}

.link-form-icon img {
  width: 80px;
}

.link-form-input-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.link-form-input-field input {
  margin-top: 5px;
  width: 100%;
  height: clamp(36px, 8vw, 44px);
  border: none;
  outline: none;
  padding: 0.6em 45px 0.6em 0.4em;
  border-radius: clamp(16px, 4vw, 20px);
  background: #fff;
  transition: background 300ms, color 300ms;
  box-sizing: border-box;
  font-size: clamp(14px, 3.5vw, 16px);
}

/* Sound waves animation for recording button */
.mic-container .circle svg {
  transition: all 0.3s ease;
  overflow: visible;
}

.mic-container .circle {
  overflow: hidden;
}

/* Default state - no animation, just static sound waves */
.mic-container .circle svg path {
  transition: all 0.2s ease;
  transform-origin: center center;
}

/* Recording state - only animate when recording */
.mic-container.recording .circle svg path:nth-child(1) {
  animation: recording-wave-1 0.8s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(2) {
  animation: recording-wave-2 1.0s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(3) {
  animation: recording-wave-3 0.6s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(4) {
  animation: recording-wave-4 1.2s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(5) {
  animation: recording-wave-5 0.9s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(6) {
  animation: recording-wave-6 0.7s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(7) {
  animation: recording-wave-7 1.1s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(8) {
  animation: recording-wave-8 0.5s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(9) {
  animation: recording-wave-9 1.3s ease-in-out infinite;
}

.mic-container.recording .circle svg path:nth-child(10) {
  animation: recording-wave-10 0.8s ease-in-out infinite;
}

/* Recording animations - subtle height scaling, centered growth */
@keyframes recording-wave-1 {
  0%, 100% { transform: scaleY(0.9); }
  50% { transform: scaleY(1.15); }
}

@keyframes recording-wave-2 {
  0%, 100% { transform: scaleY(0.85); }
  60% { transform: scaleY(1.2); }
}

@keyframes recording-wave-3 {
  0%, 100% { transform: scaleY(0.95); }
  40% { transform: scaleY(1.1); }
}

@keyframes recording-wave-4 {
  0%, 100% { transform: scaleY(0.9); }
  70% { transform: scaleY(1.25); }
}

@keyframes recording-wave-5 {
  0%, 100% { transform: scaleY(0.8); }
  45% { transform: scaleY(1.3); }
}

@keyframes recording-wave-6 {
  0%, 100% { transform: scaleY(0.92); }
  35% { transform: scaleY(1.18); }
}

@keyframes recording-wave-7 {
  0%, 100% { transform: scaleY(0.88); }
  65% { transform: scaleY(1.22); }
}

@keyframes recording-wave-8 {
  0%, 100% { transform: scaleY(0.93); }
  30% { transform: scaleY(1.12); }
}

@keyframes recording-wave-9 {
  0%, 100% { transform: scaleY(0.87); }
  75% { transform: scaleY(1.28); }
}

@keyframes recording-wave-10 {
  0%, 100% { transform: scaleY(0.91); }
  55% { transform: scaleY(1.16); }
}

/* Subtle hover effect */
.mic-container .circle:hover svg {
  transform: scale(1.05);
}

/* Gentle pulse effect for the whole SVG during recording */
.mic-container.recording .circle svg {
  animation: recording-pulse 2s ease-in-out infinite;
}

@keyframes recording-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Clean CSS Arrow Shapes - No backgrounds */
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: none !important;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active,
.slider-arrow:visited {
  outline: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* CSS Triangle Arrows */
.slider-arrow::after {
  content: '';
  width: 0;
  height: 0;
  transition: all 0.2s ease;
}

/* Left arrows (backward) - More visible */
.slider-arrow#backwardSmall::after,
.slider-arrow#backwardLarge::after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid rgba(177, 109, 255, 0.9);
}

/* Right arrows (forward) - More visible */
.slider-arrow#forwardSmall::after,
.slider-arrow#forwardLarge::after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(177, 109, 255, 0.9);
}

/* Double arrows for large jumps */
.slider-arrow#backwardLarge::before,
.slider-arrow#forwardLarge::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: all 0.2s ease;
}

.slider-arrow#backwardLarge::before {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(177, 109, 255, 0.6);
  left: 2px;
}

.slider-arrow#forwardLarge::before {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid rgba(177, 109, 255, 0.6);
  right: 2px;
}

/* Hover effects */
.slider-arrow:hover::after {
  filter: drop-shadow(0 0 6px rgba(177, 109, 255, 0.8));
}

.slider-arrow#backwardSmall:hover::after,
.slider-arrow#backwardLarge:hover::after {
  border-right-color: #FFFFFF;
  transform: translateX(-2px);
}

.slider-arrow#forwardSmall:hover::after,
.slider-arrow#forwardLarge:hover::after {
  border-left-color: #FFFFFF;
  transform: translateX(2px);
}

.slider-arrow#backwardLarge:hover::before {
  border-right-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-1px);
}

.slider-arrow#forwardLarge:hover::before {
  border-left-color: rgba(255, 255, 255, 0.8);
  transform: translateX(1px);
}

/* Active state */
.slider-arrow:active::after {
  transform: scale(0.9);
}

.slider-arrow:active::before {
  transform: scale(0.9);
}

/* Clear button for link inputs */
.input-clear-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.3;
  color: #999;
  font-size: 16px;
  font-weight: bold;
  z-index: 10;
  margin-top: 3px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.input-clear-btn:hover {
  opacity: 0.8;
  color: #555;
  background-color: rgba(0, 0, 0, 0.05);
}

.input-clear-btn.active {
  opacity: 0.7;
  color: #333;
}

.input-clear-btn.active:hover {
  opacity: 1;
  color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.youtube-time-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: auto;
  background-color: #fff;
  width: clamp(280px, 50vw, 400px);
  border-radius: clamp(6px, 1.5vw, 8px);
  transition: all 0.3s ease-in-out;
  padding: clamp(2px, 0.5vw, 4px);
}

.youtube-time-input input {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 14px);
  height: clamp(32px, 8vw, 40px);
  border-radius: clamp(6px, 2vw, 10px);
  padding-left: clamp(8px, 2vw, 10px);
  border: none;
  border-bottom: 1px solid #e5e5e5;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.youtube-time-input input:focus {
  border-bottom: 1px solid #6941c6;
  -webkit-transition: 0.1s;
  transition: 0.5s;
}

.inputs {
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.dots {
  color: #000000;
  margin-bottom: -15px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.recording-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  margin: clamp(5px, 2vw, 10px) clamp(20px, 4vw, 30px);
  width: calc(100vw - clamp(40px, 8vw, 60px));
  max-width: 700px;
  padding: clamp(16px, 3vw, 20px);
  padding-bottom: 10px;
  background: rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  border-radius: 8px;
  overflow: visible;
  transition: all 0.4s ease-in-out;
  box-sizing: border-box;
}

.recording-form:hover {
  background: rgba(255,255,255,0.2);
}

.button:hover {
  background: #1b1b1c;
}

.button:hover .svg-icon {
  animation: scale 1s linear infinite;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05) rotate(10deg);
  }

  100% {
    transform: scale(1);
  }
}

.upload-form {
  display: block;
  position: relative;
  width: 350px;
  height: 430px;
  margin-top: 10px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

#mediaFile {
  display: flex;
  flex-direction:column;
  justify-content: space-around;
  justify-items:center;
  align-items:center;
  margin-top: -20px;
}

#errorFail {
  display: flex;
  flex-direction:column;
  justify-content: space-around;
  justify-items:center;
  align-items:center;
  margin-top: -20px;
}

#songContainer {
  display: flex;
  flex-direction:column;
  justify-content: space-around;
  justify-items:center;
  align-items:center;
  margin-top: -20px;
}

.upload-form-container img {
  width: 80px;
}

.form-title {
  color: #ffffff;
  font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  font-weight: bold;
}

.form-paragraph {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  font-size: clamp(0.8rem, 3vw, 0.9375rem);
  color: rgb(105, 105, 105);
  align-items: center;
  justify-content: center;
  margin: clamp(5px, 2vw, 10px);
}

.drop-container {
  background-color: rgba(0, 140, 255, 0.1);
  position: relative;
  display: flex;
  width: clamp(240px, 85vw, 400px);
  gap: clamp(8px, 2vw, 10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(10px, 2.5vw, 15px);
  margin: clamp(5px, 2vw, 10px) auto;
  border-radius: clamp(6px, 1.5vw, 10px);
  border: 2px dashed rgb(171, 202, 255);
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.drop-container:hover {
  background: rgba(0, 140, 255, 0.3);
  border-color: rgba(135, 135, 135, 0.616);
}

.drop-title {
  color: #ffffff;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

#videoInput {
  width: 100%;
  max-width: 100%;
  color: #444;
  padding: clamp(2px, 1vw, 4px);
  background: #fff;
  border-radius: clamp(6px, 2vw, 10px);
  border: 1px solid rgba(28, 26, 28, 0.288);
  font-size: clamp(12px, 3vw, 14px);
}

#videoInput::file-selector-button {
  margin-right: clamp(10px, 3vw, 20px);
  border: none;
  background: #084cdf;
  padding: clamp(6px, 2vw, 10px) clamp(10px, 3vw, 20px);
  border-radius: clamp(6px, 2vw, 10px);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
  font-size: clamp(11px, 2.5vw, 14px);
}

#videoInput::file-selector-button:hover {
  background: #0d45a5;
}

.btn {
  border: none;
  margin: 15px auto;
  width: 15em;
  height: 5em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #1C1A1C;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  z-index: 10;
}

.link-form-submit-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 15px 0;
}

.sparkle {
  fill: #AAAAAA;
  transition: all 800ms ease;
}

.text {
  font-weight: 600;
  color: #AAAAAA;
  font-size: medium;
}

.btn:hover {
  background: linear-gradient(0deg,#A47CF3,#683FEA);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn:hover .text {
  color: white;
}

.btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
}

.btn-go-home{
  position: relative;
  z-index: 200;
  margin: 15px auto;
  width: 100px;
  padding: 10px 15px;
  border: 1px solid #FFCB39;
  border-radius: 100px;
  font-weight: 400;
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  letter-spacing : 2px;
  font-size: 11px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.btn-go-home:hover{
  background-color: #FFCB39;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0px 20px 20px rgba(0,0,0,0.1);
}

.cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 90vw;
}

.card {
  width: fit-content;
  height: auto;
  display: flex;
  margin: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  gap: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card > .image {
  width: 70px;
  height: 70px;
  transition: all 0.1s ease-in-out;
}

.card > .h3 {
  color: #1C1A1C;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 15px;
}

.card > .p {
  color: #1C1A1C;
  font-size: 1.3rem;
  text-align: center;
  font-weight: normal;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.about-us-container {
  width: 80vw;
  max-width: 800px;
  min-width: 150px;
  margin-bottom: 20px;
}

.about-us-card {
  background-color: #ffffff;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 20px;
  gap: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.about-us-image {
  width: 100px;
}

.about-us-h3 {
  color: #1C1A1C;
}

.about-us-p {
  color: #1C1A1C;
  font-size: 1.3rem;
  text-align: left;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 30px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.text-container {
  max-width: 75vw;
  background-color: #ffffff;
  padding: 20px;
  margin: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.text-title {
  text-align: center;
  color: #1C1A1C;
}

.text-content {
  text-align: left;
  color: #1C1A1C;
  font-size: 1.1rem;
  line-height: 25px;
}

.text-content ul {
  margin-left: 4.9rem;
}

.text-content h3 {
  margin-left: 1rem;
}

.text-content p {
  margin-left: 1rem;
}

.text-content a {
  word-break: break-all;
}

#button {
  display: inline-block;
  background-color: #1C1A1C;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
              opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.loader {
  display: inline;
  align-items: center;
  margin: 15px;
}

.spinner {
  width: 56px;
  height: 56px;
  display: grid;
  border: 4.5px solid #0000;
  border-radius: 50%;
  border-color: #dbdcef #0000;
  animation: spinner-e04l1k 1s infinite linear;
  margin: auto;
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1/1;
  margin: 2.2px;
  border: inherit;
  border-radius: 50%;
}

.spinner::before {
  border-color: #474bff #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.spinner::after {
  margin: 8.9px;
}

@keyframes spinner-e04l1k {
  100% {
    transform: rotate(1turn);
  }
}

.how-to-use-container li {
  list-style-type: none;
  /* margin: auto; */
  transition: all 0.3s ease-in-out;
}

.how-to-use-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 90vw;
  max-width: 1400px;
  min-width: 300px;
  margin: auto;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.step-content {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}

.step-text {
  width: 50%;
  max-width: 500px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.step-image img {
  width: 100%;
  max-width: 500px;
  min-width: 200px;
  border: 1.5px solid white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.info {
  position: relative;
  display: inline-block;
  cursor: pointer;

  width: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin: auto;
  margin-left: 30px;
  margin-right: 30px;
  background: #1a3a63;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.info__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.info__icon path {
  fill: #fff;
}

.info__title {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.info:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltiptext {
  visibility: hidden;
  width: 40vw;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  margin-left: -20vw;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.warning {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #FEF7D1;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.warning__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.warning__icon path {
  fill: #F7C752;
}

.warning__title {
  font-weight: 500;
  font-size: 14px;
  color: #755118;
}

.warning__close {
  width: 20px;
  height: 20px;
  margin: auto;
  margin-top: 10px;
  cursor: pointer;
}

.warning__close path {
  fill: #755118;
}

.error {
  max-width: 320px;
  width: 50vw;
  min-width: 200px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-left: 20px;
  margin-right: 20px;
  margin: auto;
  margin-top: 10px;
  background: #FCE8DB;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
  width: 20px;
  height: 20px;
  margin: auto;
  margin-bottom: 5px;
}

.error__icon path {
  fill: #EF665B;
}

.error__title {
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  color: #5d0f22;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: auto;
  margin-top: 10px;
  /* margin-left: auto; */
}

.error__close path {
  fill: #5d0f22;
}

.recordingBox {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1000px) {
  .faq-container {
    margin: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 53.125rem) { /* 850px */
  .cards {
    display: flex;
    flex-direction: column;
    width: clamp(300px, 80vw, 600px);
    margin: auto;
    align-items: center;
  }

  nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    justify-items: center;
  }

  nav ul span {
    display: none;
  }

  nav a img {
    width: 3.125rem;
  }
  
  .ad-container {
    margin: var(--spacing-xl) auto;
  }
  
  .ad-container.mobile {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .text-content ul {
    margin-left: 2.9rem;
  }
  
  .text-content h3 {
    margin-left: 0.5rem;
  }
  
  .text-content p {
    margin-left: 0.6rem;
  }

  .text-content strong {
    word-break: break-all;
  }
}

@media only screen and (max-width: 43.75rem) { /* 700px */
  .Song-Container {
    flex-direction: column;
    margin: var(--spacing-lg);
  }

  .hamburger {
    cursor: pointer;
    display: block;
  }

  .text-informations {
    margin-top: 0;
  }

  .lang-menu {
    display: none;
  }

  .footer-container {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .footer-links-container {
    margin-top: var(--spacing-xl);
    justify-content: space-between;
    width: 95%;
  }
  
  .ad-container {
    margin: var(--spacing-lg) auto;
    max-width: 300px;
  }

  footer {
    position: relative;
    max-width: 100vw;
    bottom: 0;
  }

  .cards {
    display: flex;
    flex-direction: column;
    width: clamp(250px, 85vw, 600px);
    margin: auto;
  }

  .step-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .step-text {
    width: 100%;
    order: 1;
    margin: 10px auto 10px auto;
    margin-top: -20px;
  }

  .stepcontent {
    display: flex;
    flex-direction: column;
  }

  .steptext {
    order: 1;
    margin-top: -20px;
  }

  .step-image {
    order: 2;
  }

  .stepimage {
    order: 2;
  }

  .faq-container {
    margin: 10px 15px 20px 15px;
  }
  
  .link-form-container {
    padding: 0 clamp(10px, 3vw, 15px);
  }
}

@media (max-width: 28.125rem) { /* 450px */
  .footer-links-container {
    flex-direction: column;
    gap: var(--spacing-xl);
    width: 100%;
  }
  
  .ad-container {
    margin: var(--spacing-lg) auto;
    max-width: 280px;
  }

  h1 {
    font-size: var(--font-size-2xl);
  }

  .card {
    margin: var(--spacing-sm);
    padding: var(--spacing-lg);
  }
}

@media (max-width: 21.875rem) { /* 350px */
  nav ul {
    display: none;
  }
  
  .link-form-container {
    padding: 0 clamp(8px, 2vw, 10px);
  }
  
  .ad-container {
    margin: var(--spacing-sm) auto;
    max-width: 260px;
    min-height: 50px;
  }

  .text-container {
    max-width: calc(100vw - 20px);
    padding: var(--spacing-lg);
    margin: var(--spacing-sm) 10px;
  }
}

.cssbuttons-io-button {
  background: #0d45a5;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: inset 0 0 1.6em -0.6em #3d3062;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 2.8em;
  padding-right: 3.3em;
  transition: all 0.3s ease-in-out;
  /* margin: 15px auto !important; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  transition: all 0.3s ease-in-out;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #3d3062;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover {
  /* width: calc(100% + 0.6em); */
  transform: scale(1.03);
  /* transform: translateX(-50%); */
  transition: all 0.3s ease-in-out;
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #6f366f;
}

/* .cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
} */

/* .cssbuttons-io-button:active .icon {
  transform: scale(0.95);
} */


.tryAgainBox {
  display: flex;
  margin: auto;
  margin-bottom: 10px;
  margin-top: -40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - clamp(40px, 6vw, 60px));
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(20px, 3vw, 30px);
  box-sizing: border-box;
}

.link-form-container .cssbuttons-io-button {
  display: block;
  margin: 15px auto !important;
  position: relative;
  left: auto;
  transform: none;
}

.mic-container {
  /* height: 100vh;
  width: 100vw; */
  display: flex;
  margin: auto;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
}
.mic-container:hover {
  transform: scale(1.04);
}
.mic-container .circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.5s;
  /* box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); */
}
.mic-container .circle svg {
  fill: #5256a3;
  font-size: 123px;
  transition: 0.9s;
}
.mic-container .circle:before {
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.1;
  /* z-index: -1; */
  position: absolute;
}
.mic-container .circle.active {
  background: #ff0000;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 33px;
  margin-bottom: 33px;
}
.mic-container .circle.active:before {
  background: #40c4ff;
  animation: bounce 0.8s ease-in-out infinite 0.5s;
}
.mic-container .circle.active svg {
  fill: #ffffff;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.4);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}