#scroll-down-gif {
  position: absolute;
  bottom: 20px; /* Alttan uzaklık */
  left: 50%;
  transform: translateX(-50%); /* Yatayda ortala */
  width: 30px; /* Genişlik */
  display: block;
  animation: bounce 1s ease-in-out infinite, fadeOut 5s forwards; /* İki animasyon aynı anda */
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0); /* Başlangıç ve bitiş pozisyonu */
  }
  40% {
      transform: translateY(-10px); /* Yukarı hareket */
  }
  60% {
      transform: translateY(5px); /* Aşağı hareket (daha az yukarı zıplasın) */
  }
}


@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  80% {
      opacity: 1; /* İlk 4 saniye görünür kalır (5s * %80) */
  }
  100% {
      opacity: 0;
      display: none; /* Kaybolduktan sonra yer kaplamaz */
  }
}

.login-container{
	width: 350px;
	height: 500px;
	background: red;
	overflow: hidden;
	background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}


#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 60px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #573b8a;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #6d44b8;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #573b8a;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}

.login-section {
  background-image: linear-gradient(to right, #0000ff, #00ff00);
  animation: backgroundAnimation 5s linear infinite;
  color: #fff;
}

#chk:checked ~  .login-section {
  background-image: linear-gradient(to right, #ff0000, #ffff00);
  animation: backgroundAnimation 5s linear infinite;
}
@keyframes backgroundAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .content-left, .content-right {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
  }

  .screenshot-card {
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px 0;
    max-width: 100%;
    transform: perspective(1000px) rotateY(0deg);
    position: relative;
  }

  .screenshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb, 68,68,221), 0.1), rgba(var(--primary-color-rgb, 68,68,221), 0));
    z-index: 1;
    transition: all 0.4s ease;
  }

  .screenshot-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  }

  .screenshot-card:hover::before {
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb, 68,68,221), 0.15), rgba(var(--primary-color-rgb, 68,68,221), 0.05));
  }

  .screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
  }

  .screenshot-card:hover img {
    transform: scale(1.03);
  }

  .description {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .description li {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.6;
    padding: 20px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .description li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.2);
  }

  .description li i {
    margin-right: 20px;
    color: var(--primary-color, #44d);
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-color-rgb, 68,68,221), 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .description li:hover i {
    transform: scale(1.1);
    background: rgba(var(--primary-color-rgb, 68,68,221), 0.15);
  }

  hr {
    border: none;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color, #44d), transparent);
    margin: 35px 0;
    width: 100%;
    border-radius: 2px;
    opacity: 0.8;
  }

  .text-intro {
    font-size: 19px;
    line-height: 1.8;
    margin-top: 35px;
    opacity: 0.95;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color, #44d);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .text-intro:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color, #44d), transparent);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  h2:hover:after {
    width: 150px;
  }

 
  section.bg-gradient-v {
    background: linear-gradient(135deg, rgba(0,0,0,0.92), rgba(0,0,0,0.97));
  }

  section.bg-gradient-h {
    background: linear-gradient(45deg, rgba(0,0,0,0.95), rgba(0,0,0,0.92));
  }

  section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--primary-color-rgb, 68,68,221), 0.05), transparent);
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .content-left, .content-right {
      width: 100%;
      padding: 25px 20px;
    }

    .wrap {
      padding: 410px 20px;
    }

    h2 {
      font-size: 36px;
    }

    .description li {
      font-size: 16px;
      padding: 15px 20px;
    }

    .text-intro {
      font-size: 16px;
      padding: 25px;
    }

    .screenshot-card {
      margin: 20px 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .content-left, .content-right {
      width: 48%;
      padding: 10px;
    }

    h2 {
      font-size: 38px;
    }

    .wrap {
      padding: 20px 30px;
    }
  }

  /* Add smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Enhanced animations */
  .content-left, .content-right {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add stagger effect to list items */
  .description li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .description li:nth-child(1) { animation-delay: 0.1s; }
  .description li:nth-child(2) { animation-delay: 0.2s; }
  .description li:nth-child(3) { animation-delay: 0.3s; }
  .description li:nth-child(4) { animation-delay: 0.4s; }
  .description li:nth-child(5) { animation-delay: 0.5s; }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }