:root {
    --primary-color: #00ffe7;
    --accent-color: #ffffff;
    --background-color: #0d0d0d;
    --modal-bg: #121212;
    --input-bg: #1a1a1a;
    --input-border: #333;
    --text-color: #fff;
    --white: #ffffff;
    --black: #000000;

    --valid-color: #28a745;

    --invalid-color: #dc3545;
  }

  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);

  }

  
  .subscription-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/subscription-img.jpeg");
    background-size: cover;
    background-position: center;

  }

  .card-join-button {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--primary-color);
    color: var(--black);
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .card-join-button:hover {
    background: var(--white);
    color: var(--black);
  }
  
  .card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    text-align: center;
    width: 60vw; 
    max-width: 400px;
    max-height: auto;
    margin: auto;
    transform: translateY(30vh);
  }

  .card-description {
    color: #ccc;
    margin-bottom: 1rem;
  }
  
  .card-price-box {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--white);
  }

  .glow {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
  }


  .load-scene {
    display: flex;
    height: 100vh;
    width: 100%;
    opacity: 1;
    position: absolute;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: #000000;
    overflow:hidden;
    transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
  }

  .load-scene video {
    width: 50%;
    height:auto;
  }

  .load-scene.fade-out {
    opacity: 0;
    z-index: -1;
  }


  /* NOTIFIACTION */
  .notification {
    position: fixed;              
    bottom: 20px;                 
    left: 50%;                    
    transform: translateX(-50%);  
    background-color: #333;      
    color: white;                
    padding: 10px 20px;         
    border-radius: 10px;          
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    z-index: 1000;                 
    opacity: 0;
    transition: opacity 0.3s ease-in-out; 
}

.notification.show {
    display: block;              
    opacity: 1;        
}

.notification.success {
    background-color: var(--valid-color);   
}

.notification.error {
    background-color: var(--invalid-color);     
}


.tilt {
  z-index: 10;
  position: absolute;
  font-size: clamp(1rem, 3vw, 3rem);
  top: 30vh;
  color: transparent; 
  background-clip: text; 
}

.tilt-left {
  left: 20vw;
  background-image: linear-gradient(-90deg, rgb(0, 255, 255), rgba(0, 255, 255, 0.2));
  transform: rotate(-20deg);
  text-shadow: 0 0 20px rgb(0, 255, 255);
}

.tilt-right {
  right: 20vw;
  background-image: linear-gradient(90deg, rgb(0, 255, 255), rgba(0, 255, 255, 0.2));
  transform: rotate(20deg);
  text-shadow: 0 0 20px rgb(0, 255, 255);
}

@media (max-height: 630px) {
  .subscription-container {
    height: 200vh;
  }

  .card {
    transform: translateY(60vh);
  }

}
@media (max-width: 920px) {
  .tilt-right {
    right: 8vw;
  }

  .tilt-left {
    left: 8vw;
  }

  .tilt {
    top: 10vh;
    font-size: 6vw;
  }
}

@media (max-width: 720px) {
  .tilt-left {
    left: 5vw;
  }

  .tilt-right {
    right: 5vw;
  }

    .load-scene video {
    width: 120%;
    height:auto;
  }
}