
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

#bgvid {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.top-menu {
  text-align: center;
  margin-top: 20px;
}

.menu-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 6px;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.menu-btn:hover {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

#intro-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  z-index: 10;
  text-align: center;

  /* Şunu ekle */
  display: inline-block;
  padding: 10px; /* varsa çok düşür */
}


#intro-video {
  width: 800px;
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.intro-controls {
  margin-top: 10px;
}

.intro-controls button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 12px;
  margin: 0 6px;
  border-radius: 6px;
  cursor: pointer;
}

.intro-controls button:hover {
  background: rgba(255,255,255,0.1);
}
.close-button {
  position: absolute;
  top: 10px;
  right: 4px;
  background: transparent;
  border: none;
  color: white;
  font-size: 10px;
  cursor: pointer;
  z-index: 9999;
}
.close-button:hover {
  color: #ff4d4d;
}

.play-icon {
  width: 128px;
  height: 128px;
  vertical-align: middle;
  margin-right: 0px;
}

.center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 11;
  padding: 0;
}

@font-face {
  font-family: 'HarryP';
  src: url('fonts/HarryP.TTF') format('truetype');
}

@font-face {
  font-family: 'Magic';
  src: url('fonts/Magic.TTF') format('truetype');
}

.badge-with-text.aligned-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-left: 80px;
  margin-top: 40px;
}

.badge-img {
  height: 220px;
  object-fit: contain;
}

.badge-text-right {
  width: 100%;
  padding-top: 10px;
  padding-left: 20px;
  color: #fff;
  text-align: left;
}

.magic-title {
  font-family: 'HarryP', serif;
  font-size: 26px;
  color: #6a5acd;
  letter-spacing: 1px;
  margin-bottom: 10px;

  /* parıltıyı kaldırdık */
  text-shadow: none;
}

.magic-desc {
  font-family: 'HarryP', serif;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 0 4px #6a5acd;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* Arka plan karartması */
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 9999;
}

@font-face {
  font-family: 'HarryP';
  src: url('fonts/HarryP.TTF') format('truetype');
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.gallery-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
}

.coming-soon-text {
  font-family: 'HarryP', serif;
  font-size: 60px;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 0 15px #6a5acd;
}


.coming-soon-subtext {
  margin-top: 50px;
  font-size: 18px;
  color: #ccc;
  font-family: 'Courier New', monospace;
}

.footer-logo {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
}

.footer-text {
  font-family: 'Magic', serif;
  font-size: 68px;
  color: #FFFFF0;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 0 6px #6a5acd;
}


.x-icon {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  transition: transform 0.2s ease;
}

.x-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #ffffffaa);
}
