* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background: linear-gradient(0deg, #060606 0%, #060606 100%), linear-gradient(0deg, #1a1a1f 0%, #1a1a1f 100%), #0f0f12;
}

a {
  text-decoration: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes bright {
  0% {
    filter: brightness(0.8);
  }
  50% {
    filter: brightness(1.6);
  }
  100% {
    filter: brightness(0.8);
  }
}
@keyframes up {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(70px) rotate(45deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes down {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(40px) rotate(-15deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar {
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-container .navbar-brand {
  margin-right: 8px;
}
.navbar-container .navbar-brand img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
.navbar-container .navbar-mail-btn {
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #181818;
  border-radius: 500px;
  padding: 12px 24px;
  font-weight: 500;
}
.navbar-container .navbar-mail-btn .icon {
  margin-right: 8px;
}
.navbar-container .navbar-mail-btn .icon svg {
  display: block;
  width: 20px;
}
.navbar-container .navbar-mail-btn:hover {
  background-color: #ff6730;
}

.hero {
  margin-top: 36px;
}
.hero-container {
  position: relative;
}

#loading img{
    width: 120px;
    height: 120px;
}

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.95);
  z-index: 6;
}

@media (max-width: 576px) {
  .hero-container {
    padding-bottom: 350px;
  }
}
.hero-container .hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  animation-duration: 4s;
}
.hero-container .hero-logo img {
  width: 100%;
  height: auto;
  max-width: 100px;
  display: block;
}
@media (max-width: 768px) {
  .hero-container .hero-logo img {
    max-width: 80px;
  }
}
@media (max-width: 576px) {
  .hero-container .hero-logo img {
    max-width: 50px;
  }
}
.hero-container .hero-heading {
  color: #ffffff;
  font-size: 54px;
  text-align: center;
  margin-top: 36px;
  animation-duration: 2.5s;
}
@media (max-width: 992px) {
  .hero-container .hero-heading {
    font-size: 46px;
  }
}
@media (max-width: 576px) {
  .hero-container .hero-heading {
    font-size: 24px;
  }
}
.hero-container .hero-images {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 36px;
}
.hero-container .hero-images .hero-image {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
}
.hero-container .hero-images .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
}
@media (max-width: 992px) {
  .hero-container .hero-images .hero-image img {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-images .hero-image img {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image img {
    max-width: 150px;
  }
}
@media (max-width: 450px) {
  .hero-container .hero-images .hero-image img {
    max-width: 130px;
  }
}
@media (max-width: 350px) {
  .hero-container .hero-images .hero-image img {
    max-width: 100px;
  }
}
.hero-container .hero-images .hero-image-bg {
  display: block;
  position: relative;
  opacity: 1;
  filter: brightness(0.8);
}
.hero-container .hero-images .hero-image-bg img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  animation: bright 3s ease-in-out infinite;
}
.hero-container .hero-images .hero-image-bg .eclipse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #d85e12;
  filter: blur(250px);
}
.hero-container .hero-images .hero-image-bg .hero-circle-container {
  top: -50px;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0.1;
}
@media (max-width: 1100px) {
  .hero-container .hero-images .hero-image-bg .hero-circle-container {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-images .hero-image-bg .hero-circle-container {
    top: 0px;
  }
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-bg .hero-circle-container {
    overflow: visible;
  }
}
.hero-container .hero-images .hero-image-bg .hero-circle-container .circle {
  bottom: 30%;
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  opacity: 0;
  border: 2px solid #b4b4b4;
  animation: pulse 6s ease-out infinite;
  opacity: 0.1;
}
@media (max-width: 768px) {
  .hero-container .hero-images .hero-image-bg .hero-circle-container .circle {
    bottom: 40%;
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-bg .hero-circle-container .circle {
    bottom: 60%;
    width: 100px;
    height: 100px;
  }
}
.hero-container .hero-images .hero-image-icon-1 {
  position: absolute;
  top: 29%;
  left: 29%;
  z-index: 0;
  animation: up 12s ease-in-out infinite;
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-icon-1 {
    left: 20%;
  }
}
.hero-container .hero-images .hero-image-icon-1 img {
  width: 100%;
  height: auto;
  max-width: 110px;
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-icon-1 img {
    max-width: 60px;
  }
}
.hero-container .hero-images .hero-image-icon-2 {
  position: absolute;
  top: 29%;
  right: 30%;
  z-index: 2;
  animation: down 12s ease-in-out infinite;
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-icon-2 {
    right: 20%;
  }
}
.hero-container .hero-images .hero-image-icon-2 img {
  width: 100%;
  height: auto;
  max-width: 110px;
}
@media (max-width: 576px) {
  .hero-container .hero-images .hero-image-icon-2 img {
    max-width: 60px;
  }
}
.hero-container .hero-btn-container {
  position: absolute;
  top: 80%;
  left: 5%;
  display: flex;
  flex-direction: column;
  z-index: 4;
}
@media (max-width: 576px) {
  .hero-container .hero-btn-container {
    top: unset;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
.hero-container .hero-btn-container .hero-btn-text {
  color: #ffffff;
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
.hero-container .hero-btn-container .hero-btn-text h1 {
  font-size: 48px;
  margin-right: 8px;
}
.hero-container .hero-btn-container .hero-btn-text span {
  font-size: 16px;
}
.hero-container .hero-btn-container .btns {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .hero-container .hero-btn-container .btns {
    flex-direction: column;
    align-items: center;
  }
}
.hero-container .hero-btn-container .btns .google-play-btn {
  background-color: transparent;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  margin-right: 16px;
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 576px) {
  .hero-container .hero-btn-container .btns .google-play-btn {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.hero-container .hero-btn-container .btns .google-play-btn .icon {
  margin-right: 12px;
}
.hero-container .hero-btn-container .btns .google-play-btn .icon svg {
  width: 20px;
}
.hero-container .hero-btn-container .btns .google-play-btn:hover {
  background-color: #0f0f12;
  color: #ffffff;
  border-color: #0f0f12;
}
.hero-container .hero-btn-container .btns .google-play-btn:hover .icon svg path {
  fill: #ffffff;
}
.hero-container .hero-btn-container .btns .app-store-btn {
  background-color: #ffffff;
  color: #060606;
  padding: 8px 24px;
  border-radius: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  white-space: nowrap;
  font-weight: 500;
}
.hero-container .hero-btn-container .btns .app-store-btn .icon {
  margin-right: 12px;
}
.hero-container .hero-btn-container .btns .app-store-btn .icon svg {
  width: 20px;
}
.hero-container .hero-btn-container .btns .app-store-btn:hover {
  background-color: #ff6730;
  border-color: #ff6730;
  color: #ffffff;
}
.hero-container .hero-btn-container .btns .app-store-btn:hover .icon svg path {
  fill: #ffffff;
}
.hero-container .hero-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) -6.89%, rgba(14, 14, 14, 0.24) 79.3%);
  backdrop-filter: blur(50px);
  padding: 16px;
  position: absolute;
  top: 65%;
  right: 5%;
  max-width: 350px;
  border-radius: 24px;
  z-index: 4;
}
@media (max-width: 576px) {
  .hero-container .hero-content {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    top: 60%;
  }
}
.hero-container .hero-content h3 {
  color: #ffffff;
}
.hero-container .hero-content p {
  color: #ffffff;
  opacity: 0.7;
  margin-top: 12px;
}

@media (max-width: 576px) {
  .footer {
    margin-top: 50px;
  }
}
.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 0.75px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
}
.footer-container .footer-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 16px;
}
@media (max-width: 768px) {
  .footer-container .footer-1 {
    grid-template-columns: 1fr;
  }
}
.footer-container .footer-1-left {
  text-align: left;
}
@media (max-width: 768px) {
  .footer-container .footer-1-left {
    text-align: center;
  }
}
.footer-container .footer-1-left a {
  color: #ffffff;
}
.footer-container .footer-1-center {
  text-align: center;
}
.footer-container .footer-1-right {
  text-align: right;
}
@media (max-width: 768px) {
  .footer-container .footer-1-right {
    text-align: center;
  }
}
.footer-container .footer-1-right span {
  color: #383843;
}
.footer-container .footer-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 16px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .footer-container .footer-2 {
    grid-template-columns: 1fr;
  }
}
.footer-container .footer-2-left {
  text-align: left;
}
@media (max-width: 768px) {
  .footer-container .footer-2-left {
    text-align: center;
    order: 2;
  }
}
.footer-container .footer-2-left span {
  color: #383843;
}
.footer-container .footer-2-center {
  text-align: center;
}
.footer-container .footer-2-right {
  text-align: right;
}
@media (max-width: 768px) {
  .footer-container .footer-2-right {
    text-align: center;
    order: 1;
  }
}
.footer-container .footer-2-right a {
  color: #383843;
  text-decoration: underline;
}

.privacy-policy .container .content {
  margin-top: 36px;
  margin-bottom: 36px;
  line-height: 1.25;
}
.privacy-policy .container .content h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 36px;
}
.privacy-policy .container .content h1, .privacy-policy .container .content h2, .privacy-policy .container .content h3, .privacy-policy .container .content h4, .privacy-policy .container .content h5, .privacy-policy .container .content h6 {
  color: #ffffff;
}
.privacy-policy .container .content p {
  color: #ffffff;
  margin-bottom: 16px;
}
.privacy-policy .container .content ul {
  padding-left: 16px;
}
.privacy-policy .container .content li {
  color: #ffffff;
  margin-bottom: 8px;
}
.privacy-policy .container .content h2 {
  margin-bottom: 12px;
  margin-top: 24px;
}
.privacy-policy .container .content a {
  color: #ff6730;
}
#shooting-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}
h1,h2,h3,h4,h5,h6,p,span 
{
	transition: text-shadow 0.3s ease-out, color 0.3s ease-out; /* Yumuşak geçiş */
}

.asd{
display:block
}

h1:not(.asd):hover,h2:hover,h3:hover,h4:hover,h5:hover,h6:hover,p:hover,span:hover {
  /* Yazı rengini biraz daha parlak yapabiliriz (isteğe bağlı) */
  color: #ffffff; 

  /* Parlama efekti için text-shadow */
  /* Format: yatay-offset dikey-offset bulanıklık-yarıçapı renk */
  text-shadow: 
    0 0 7px rgba(255, 255, 255, 0.8), /* Hafif beyaz parlama */
    0 0 10px rgba(255, 255, 255, 0.6), /* Biraz daha yaygın beyaz parlama */
    0 0 20px rgba(255, 103, 48, 0.6), /* Ana tema renginizle (#ff6730) uyumlu bir parlama */
    0 0 30px rgba(255, 103, 48, 0.4); /* Daha geniş, soluk tema rengi parlama */

  transition: text-shadow 0.3s ease-out, color 0.3s ease-out; /* Yumuşak geçiş */
}

/* Eğer metnin normalde opaklığı düşükse, hover durumunda tam opak yapın */
.dusuk-opaklik.parlayan-yazi:hover {
    opacity: 1;
}
body {
  cursor: url('../images/cursor.png') 16 16, auto;
}
/* 16 16 = resmin odak noktasının koordinatları */

@media (max-width: 768px) {
  #cursor {
    display: none;
  }
}