/* Landing Screen Styles */
.landing-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.8s ease;
  }
  
  .landing-screen.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .landing-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
  }
  
  /* NEW: Logo wrapper with circular frame */
  .logo-wrapper {
    width: 260px;
  height: 260px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: white;
  border: 6px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: pulse 2s infinite alternate;
  padding: 30px; /* NEW: gives the logo space inside the circle */
  box-sizing: border-box;
  }
  
  .landing-logo {
    width: 90%;
    height: auto;
  }
  
  /* Pulse animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
  }
  
  .landing-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
  }
  
  .landing-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    color: var(--light);
  }
  
  .enter-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .enter-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  }
  
  .enter-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: transform 0.6s;
    z-index: -1;
  }
  
  .enter-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .landing-title {
      font-size: 2.5rem;
    }
  
    .landing-subtitle {
      font-size: 1.5rem;
    }
  
    .enter-button {
      padding: 15px 30px;
      font-size: 1.2rem;
    }
  }
  