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

body {
  font-family: "Montserrat", sans-serif; /* Daha önce önerdiğimiz font */
  background-color: #000;
  color: #fff;
  scrollbar-width: thin;
  scrollbar-color: #ff8000 rgba(255, 128, 0, 0.2);
}

/* Webkit scrollbar styling for body */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: rgba(255, 128, 0, 0.1);
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb {
  background: #ff8000;
  border-radius: 6px;
  border: 2px solid #000;
}

body::-webkit-scrollbar-thumb:hover {
  background: #ff9933;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.menu-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.menu-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px #ff8000, 0 0 20px #ff8000, 0 0 30px #ff8000;
  animation: glow 2s ease-in-out infinite alternate;
  text-align: center;
}

.selection-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .selection-text {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.option {
  flex: 1;
  padding: 1.5rem;
  border: 2px solid rgba(255, 128, 0, 0.2); /* Turuncu kenarlık */
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.option.disabled {
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.5);
}

.option.disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 128, 0, 0.8); /* Turuncu arka plan */
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  animation: pulse 2s infinite;
}

.option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

.option:not(.disabled):hover {
  transform: translateY(-10px);
  border-color: #ff8000; /* Turuncu vurgu */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.option-content {
  text-align: center;
  width: 100%;
}

h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.option-description p {
  font-size: clamp(0.8rem, 2vw, 1rem);
  margin: 0.5rem 0;
  opacity: 0.8;
  font-weight: 500;
}

.select-button {
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  background: rgba(255, 128, 0, 0.1);
  border: 1px solid #ff8000;
  border-radius: 5px;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 128, 0, 0.1);
}

.select-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.4s ease;
}

.select-button::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff8000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.option:hover .select-button::before {
  left: 100%;
}

.option:hover .select-button::after {
  transform: scaleX(1);
}

.select-button.disabled {
  background: rgba(80, 80, 80, 0.2);
  border-color: rgba(120, 120, 120, 0.5);
  cursor: not-allowed;
  box-shadow: none;
}

.option:not(.disabled):hover .select-button:not(.disabled) {
  background: #ff8000;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 128, 0, 0.4);
  letter-spacing: 0.2em;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ff8000, 0 0 20px #ff8000;
  }
  to {
    text-shadow: 0 0 20px #ff8000, 0 0 30px #ff8000, 0 0 40px #ff8000;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
