    /* GLOBAL RESET & BASE */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Roboto", Arial, sans-serif; background-color: #040f16; color: #EAE0D5; text-align: center; }
    
    /* KEYFRAME ANIMATIONS */
    @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    
    /* HEADER */
    .site-header {
      background-color: #00171f;
      padding: 15px 5%;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      animation: slideDown 0.5s ease-in-out;
    }
    .site-header .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .site-header .logo {
      display: flex;
      align-items: center;
    }
    .site-header .logo img { height: 50px; margin-right: 10px; }
    .site-header .logo span { font-size: 28px; font-weight: bold; color: #caf0f8; }
    .site-header .logo span:hover { transform: scale(1.05); }
    .site-header .logo img:hover { transform: scale(1.05); }
    nav ul { list-style: none; display: flex; }
    nav ul li { margin-left: 25px; }
    nav ul li a {
      font-size: 16px;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 5px 10px;
      transition: color 0.3s, transform 0.3s;
    }
    nav ul li a:hover, nav ul li a.active:hover { color: #C6AC8E; transform: scale(1.05); }
    nav ul li a.active { color: #22333B; }
    .hamburger { display: none; flex-direction: column; cursor: pointer; }
    .hamburger span { width: 25px; height: 3px; background: #fff; margin: 4px 0; transition: all 0.3s; }
    
    
    /* HERO SECTION */
    .hero {
      position: relative;
      padding: 150px 20px;
      text-align: center;
      color: #fff;
      margin-top: 80px;
      animation: fadeIn 1.5s ease-in-out;
      z-index: 2;
      transition: transform 0.3s;
    }
    .hero h1:hover { transform: scale(1.02); }
    .hero h1 { font-size: 42px; margin-bottom: 10px; }
    .hero p { font-size: 18px; margin-bottom: 30px; }
    .hero .btn {
      background: #22333B;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-size: 18px;
      transition: transform 0.3s;
    }
    .hero .btn:hover { transform: scale(1.05); }
    
    /* MAIN CONTENT CONTAINER */
    .container.main {
      width: 90%;
      max-width: 800px;
      margin: 50px auto 50px;
      padding: 20px;
      animation: fadeIn 1.5s ease-in-out;
    }
    
    /* CONTENT BOXES */
    .content-box {
      background: #00171f;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 15px #8ecae6;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }
    .content-box:hover { transform: scale(1.02); }
    .content-box h2 { font-size: 32px; margin-bottom: 15px; color: #EAE0D5; }
    .content-box p { font-size: 18px; }
    
    /* SLIDESHOW */
    .slideshow-container {
      position: relative;
      max-width: 600px;
      margin: auto;
      border-radius: 8px;
      overflow: hidden;
    }
    .slide { display: none; }
    .slide img { width: 100%; display: block; }
    
    /* STATISTICS */
    .stats { margin-bottom: 40px; }
    .stat-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .stat-item {
      font-size: 20px;
      padding: 10px 20px;
      background: #22333B;
      border-radius: 8px;
      transition: transform 0.3s;
    }
    .stat-item:hover { transform: scale(1.05); }
    
    /* LATEST NEWS */
    .latest-news { margin-bottom: 40px; }
    .news-item {
      border-top: 1px solid #22333B;
      border-bottom: 1px solid #22333B;
      padding: 20px 0;
      margin: 20px 0;
      transition: background 0.3s;
    }
    .news-item:hover { transform: scale(1.02); }
    .news-item h3 { font-size: 28px; margin-bottom: 10px; }
    .news-item p { font-size: 16px; }
    
    /* OTHER SERVICES */
    .other-services { margin-bottom: 40px; }
    .other-services .btn {
      background: #22333B;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      transition: transform 0.3s;
    }
    .other-services .btn:hover { transform: scale(1.05); }
    
    
    /* FOOTER */
    .site-footer {
      background-color: #00171f;
      padding: 20px;
      font-size: 14px;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
      .site-header .container {
        flex-direction: row;
        justify-content: space-between;
      }
      nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #222;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.5);
      }
      nav ul li { margin: 0; text-align: center; }
      nav ul li a { padding: 10px; font-size: 14px; }
      .hamburger { display: flex; }
      nav ul.nav-active { display: flex; }
    }
    /* ANIMATIONS */
    @keyframes slideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    /* SERVICE BOXES */
    .service-box {
      background:  #00171f;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0px 0px 15px #8ecae6;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }
    .service-box:hover {
      transform: scale(1.02);
    }
    .service-box h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #EAE0D5;
    }
    .service-box p {
      font-size: 18px;
    }
    .contact-info {
      background: rgba(26,26,26,0.9);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(255,74,23,0.2);
    }
    .contact-info h1 { font-size: 42px; margin-bottom: 20px; }
    .contact-info p { font-size: 18px; margin-bottom: 20px; }
    .contact-info a {
      color: #ff4a17;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .contact-info a:hover { color: #ff7f50; }
    
    /* DISCORD BUTTON */
    .discord-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #5865F2;
      color: #fff !important;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 8px;
      font-size: 20px;
      font-weight: bold;
      transition: background 0.3s, transform 0.3s;
      margin-top: 20px;
    }
    .discord-btn:hover { background: #4e5bd4; transform: scale(1.05); }
    .discord-btn img { height: 24px; width: 24px; margin-right: 10px; }
    /* DISCORD BUTTON */
    .discord-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #5865F2;
      color: #fff;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 8px;
      font-size: 20px;
      font-weight: bold;
      transition: background 0.3s, transform 0.3s;
    }
    .discord-btn:hover { background: #4e5bd4; transform: scale(1.05); }
    .discord-btn img { height: 24px; width: 24px; margin-right: 10px; }
     .contact-info {
      background: #00171f;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 15px #fff;
    }
    .contact-info h1 { font-size: 42px; margin-bottom: 20px; }
    .contact-info p { font-size: 18px; margin-bottom: 20px; }
    .contact-info a {
      color: #caf0f8;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .contact-info a:hover { color: #caf0f8; }
    
    
