* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
  }
  
  body, html {
    height: 100%;
    overflow: hidden;
  }
  
  /* Background slideshow */
  .slideshow {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 40s infinite;
  }
  
  .slide:nth-child(1) { animation-delay: 0s; }
  .slide:nth-child(2) { animation-delay: 10s; }
  .slide:nth-child(3) { animation-delay: 20s; }
  .slide:nth-child(4) { animation-delay: 30s; }
  
  @keyframes slideShow {
    0% { opacity: 0; transform: translateY(0); }
    10% { opacity: 1; }
    40% { opacity: 1; transform: translateY(-80px); }
    60% { opacity: 0; }
    100% { opacity: 0; }
  }
  
  /* Dark overlay */
  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
  }
  
  /* Content */
  .content {
    text-align: center;
    color: #fff;
    padding: 20px;
    margin-top: 25vh;
  }
  
  h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  
  .welcome {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: auto;
  }
  
  .buttons {
    margin-top: 30px;
  }
  
  .buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 22px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
  }

  #loader {
    position: fixed;
    inset: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 9999;
  }