/* styles.css */

/* Global */
body.page-index {
    background-color: #121212;
    color: white;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Navbar */
  .fixed-top {
    box-shadow: 0 2px 10px rgba(255,255,255,0.1);
    z-index: 1000;
  }
  
  /* Logo & Avatar */
  .logo { width:70px; height:70px; border-radius:50%; }
  .avatar { width:25px; height:25px; border-radius:50%; }
  
  /* Starfield */
  #three-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
  }
  
  /* Splash */
  #splash-screen {
    position: fixed;
    top:0; left:0;
    width:100vw; height:100vh;
    background:#000;
    display:flex; justify-content:center; align-items:center;
    transition: opacity 1s ease;
    z-index:9999;
  }
  #splash-screen.hide {
    opacity:0;
    pointer-events:none;
  }
  .splash-enter {
    position:relative;
    width:50vw; max-width:250px;
    height:10vh; max-height:60px;
    cursor:pointer;
    z-index:2;
  }
  .splash.full img {
    position:absolute;
    width:100%; height:100%;
    object-fit: contain; /* This was changed from 'cover' */
    z-index:1;
  }
  
  /* Kick popup */
  .kick-popup {
    position:fixed; bottom:20px; right:20px;
    width:360px; height:202px;
    border-radius:12px; overflow:hidden;
    background:#000; color:#fff;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
    font-size:16px; display:none;
    z-index:9999;
  }
  .kick-popup iframe {
    width:100%; height:100%; border:none; border-radius:12px;
  }
  .kick-popup .close-btn {
    position:absolute; top:5px; right:8px;
    background:transparent; border:none; color:#fff;
    font-size:18px; cursor:pointer; z-index:10000;
  }
  .kick-popup .offline-message {
    padding:20px; text-align:center;
  }
  
  /* Buttons */
  .btn-dark a { font-weight:bold; }
  .btn-dark a:hover { color:#f8f9fa; }
  
  /* Sections */
  .vip-rewards, .stake-banner, .get-in-touch {
    background-color: #121212;
  }
  .stake-banner img {
    width:150px; max-width:500%;
    height:auto; border-radius:10px;
  }
  
  /* Social boxes */
  .social-box {
    background:#1c1c1e; padding:20px;
    border-radius:10px; text-align:center;
    transition:transform .2s;
  }
  .social-box img {
    width:60px; height:60px; border-radius:10px;
  }
  .social-box:hover {
    transform:scale(1.05);
  }
  
  /* Footer */
  footer.footer {
    background-color: #1c1c1e;
    padding:20px; text-align:center;
  }
  
  /* Misc */
  .feature-box img { max-width:100px; margin-bottom:10px; }
  .bonus-hunt-section { background:#101117; border-radius:10px; margin-top:40px; }
  .tracker-title {
    background:#1f3fff; padding:4px 10px;
    border-radius:3px; font-weight:bold; color:#fff;
  }
  .bonus-title { font-weight:bold; font-size:2rem; color:#2b8aff; }
  .box {
    background:#1b1c22; padding:15px 10px;
    border-radius:10px; font-size:1.1rem;
    font-weight:bold; color:#fff;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
  }
  .box small {
    display:block; font-size:.8rem;
    color:#aaa; font-weight:normal;
  }
  