    *{margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth}
    body{font-family:'Inter',sans-serif;background:#000;color:#fff;overflow-x:hidden;position:relative}

    /* Loader */
    .loader{position:fixed;top:0;left:0;width:100%;height:100%;background:#000;display:flex;justify-content:center;align-items:center;z-index:10000;transition:opacity .5s ease}
    .loader.hidden{opacity:0;pointer-events:none}
    .loader-content{text-align:center}
    .loader-content i{font-size:4em;color:#0088ff;animation:spin 1s linear infinite}
    .loader-text{margin-top:20px;font-family:'Orbitron',sans-serif;font-size:1.2em;color:#0088ff}
    @keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}

    /* Cursor */
    .cursor{position:fixed;width:15px;height:15px;background:radial-gradient(circle,#0088ff 20%,transparent 70%);border-radius:50%;pointer-events:none;z-index:9999;mix-blend-mode:screen;opacity:1;transition:transform .1s ease,opacity .2s ease;left:0;top:0}
    .cursor-trail{position:fixed;width:40px;height:40px;border:2px solid #0088ff;border-radius:50%;pointer-events:none;z-index:9998;opacity:.5;transition:transform .3s ease,opacity .3s ease;left:0;top:0}
    .cursor.hidden,.cursor-trail.hidden{opacity:0}

    /* Quick Links Bar */
    .quick-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background: #030712;
      border-bottom: solid 1px #031a2e;
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      z-index: 1001;
    }

    .links-left {
      display: flex;
      gap: 25px;
      list-style: none;
    }
    .links-left a {
      color: #fff;
      text-decoration: none;
      font-size: .9em;
      transition: .3s;
    }
    .links-left a:hover {
      color: #0088ff;
    }

    .links-right {
      display: flex;
      gap: 20px;
    }
    .links-right a {
      color: #fff;
      font-size: 1.2em;
      transition: .3s;
    }
    .links-right a:hover {
      color: #0088ff;
      transform: scale(1.2) rotate(5deg);
    }

    /* Header */
    header {
      position: fixed;
      top: 40px;
      width: 100%;
      padding: 20px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #030712;
      z-index: 1000;
      transition: 0.3s;
    }

    header.scrolled {
      background: #030712;
    }

    .logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2em;
      background: linear-gradient(45deg,#0088ff,#ff00ff,#00bfff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: neon-flicker 2s infinite alternate;
    }

    @keyframes neon-flicker{0%,100%{opacity:1;text-shadow:0 0 20px #0088ff}50%{opacity:.9;text-shadow:0 0 30px #ff00ff}}

    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    nav a {
      font-family: 'Orbitron', sans-serif;
      color: #fff;
      text-decoration: none;
      position: relative;
      transition: .3s;
    }
    nav a:hover {
      color: #0088ff;
      transform: translateX(10px);
    }
    nav a.active {
      color: #0088ff;
      font-weight: 700;
      transform: scale(1.1);
    }
    nav a::before {
      content:'';
      position:absolute;
      bottom:-5px;
      left:0;
      width:10px;
      height:2px;
      background:#0088ff;
      transition:width 0.3s;
    }
    nav a.active::before, nav a:hover::before {
      width:100%;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    @media(max-width: 900px) {
      nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 220px;
        height: calc(100vh - 80px);
        background: #111;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        transition: right 0.3s ease;
      }
      nav.open {
        right: 0;
      }
      nav ul {
        flex-direction: column;
        gap: 15px;
      }
      .hamburger {
        display: flex;
      }
    }

    /* Progress Bar */
    .progress-bar {
      position: fixed;
      top: 120px;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg,#0088ff,#ff00ff);
      width: 0;
      z-index: 998;
      box-shadow: 0 0 10px #0088ff;
      transition: width 0.2s ease-out;
    }

    /* Hero Section */
    #hero {
      height:100vh;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      position:relative;
      overflow:hidden;
      margin-top:120px;
      width:100%;
      max-width:none;
    }

    #threejs-hero {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.9;
    }

    .hero-slider::after {
      content:"";
      position:absolute;
      top:0; left:0;
      width:100%; height:100%;
      background:rgba(0,0,0,0.5);
      z-index:1;
    }
    .hero-slider {
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      z-index:-2;
    }
    .hero-slide {
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      opacity:0;
      transition:opacity 1s ease-in-out;
    }
    .hero-slide.active { opacity:1; }

    #hero h1{font-family:'Orbitron',sans-serif;font-size:clamp(2.5rem,8vw,4.5rem);margin-bottom:20px;background:linear-gradient(45deg,#0088ff,#ff00ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-shadow:0 0 20px #0088ff;animation:text-glitch 1.5s infinite;z-index:2}
    @keyframes text-glitch{0%{transform:translate(0)}20%{transform:translate(-2px,2px)}40%{transform:translate(2px,-2px)}60%{transform:translate(-2px,2px)}80%{transform:translate(2px,-2px)}100%{transform:translate(0)}}
    #hero p{font-size:clamp(1rem,2.5vw,1.4rem);max-width:700px;margin-bottom:40px;opacity:.85;line-height:1.5;z-index:2}
    .cta-button{padding:15px 50px;background:linear-gradient(45deg,#0088ff,#ff00ff);color:#000;text-decoration:none;border-radius:50px;font-family:'Orbitron',sans-serif;font-weight:700;font-size:1.2em;transition:.4s;box-shadow:0 0 20px #0088ff;position:relative;overflow:hidden;z-index:2}
    .cta-button::before{content:'';position:absolute;top:0;left:-100%;width:200%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:.5s}
    .cta-button:hover::before{left:100%}
    .cta-button:hover{transform:translateY(-5px) scale(1.05);box-shadow:0 0 30px #ff00ff}

    /* Server Status */
    .server-status {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      z-index: 2;
    }
    .status-item {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      padding: 10px 20px;
      border-radius: 8px;
      border: 1px solid rgba(0,136,255,0.2);
      font-family: 'Orbitron', sans-serif;
      font-size: 1em;
      color: #fff;
      text-align: center;
      transition: all 0.3s ease;
    }
    .status-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(0,136,255,0.5);
      border-color: #ff00ff;
    }
    .status-item span {
      color: #0088ff;
      font-weight: 700;
    }

    section{padding:80px 20px;max-width:1400px;margin:0 auto;position:relative}
    .section-title{font-family:'Orbitron',sans-serif;font-size:clamp(2rem,5vw,2.8rem);text-align:center;margin-bottom:50px;background:linear-gradient(45deg,#fff,#0088ff,#ff00ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-shadow:0 0 15px #0088ff}

    /* About */
    #about{display:grid;grid-template-columns:1fr 2fr;gap:50px;align-items:center}
    .about-logo{text-align:center}
    .about-logo img{width:200px;height:auto;filter:drop-shadow(0 0 20px #0088ff)}
    .about-text h3{font-family:'Orbitron',sans-serif;font-size:2em;margin-bottom:20px;color:#0088ff}
    .about-text p{line-height:1.6;opacity:.9}

    /* FAQ */
    #faq .faq-item{background:#00030;margin-bottom:15px;overflow:hidde ;border: 1px solid rgba(0, 136, 255, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); border-radius:10px;}
    .faq-question{padding:22px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:#010a1e;transition:.3s;      border: 1px solid rgba(0, 136, 255, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); border-radius:10px;}
    .faq-question:hover{      ;
      border-color: #ff00ff;
      box-shadow: 0 15px 35px rgba(0, 136, 255, 0.35);}
    .faq-question i{transition:.3s}
    .faq-question.active i{transform:rotate(180deg)}
    .faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 20px}
    .faq-answer.active{max-height:200px;padding:20px}

    /* Videos */
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .video-card {
      background: #00030;
      border-radius: 15px;
      overflow: hidden;
      padding: 20px;
      transition: all 0.4s ease;
      border: 1px solid rgba(0, 136, 255, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      position: relative;
    }
    .video-card iframe {
      width: 100%;
      height: 200px;
      border-radius: 20px;
      border: none;
    }
    .video-card h4 {
      padding: 12px 15px 5px 15px;
      font-family: 'Orbitron', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    }
    .video-card p {
      padding: 0 15px 15px 15px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #d0d0d0;
      opacity: 0.95;
      text-shadow: 0 0 5px rgba(0,0,0,0.7);
    }
    .video-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: #ff00ff;
      box-shadow: 0 15px 35px rgba(0, 136, 255, 0.35);
    }
    .video-card:hover h4 {
      color: #00bfff;
    }

    /* Leadership */
    #leadership {
      overflow: hidden;
      position: relative;
    }
    .marquee {
      width: 100%;
      overflow: hidden;
    }
    .leadership-track {
      display: flex;
      width: max-content;
      animation: scroll-left 20s linear infinite;
    }
    .leadership-cards {
      display: flex;
      gap: 30px;
      padding: 10px 30px;
    }
    .leadership-card {
      background: #00030;
      padding: 25px 20px;
      border-radius: 12px;
      min-width: 200px;
      text-align: center;
      border: 1px solid rgba(0,136,255,.2);
      transition: all 0.4s ease;
      cursor: pointer;
    }
    .leadership-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,136,255,.3);
      border-color: #ff00ff;
    }
    .leadership-card i {
      font-size: 2em;
      margin-bottom: 10px;
      color: #0088ff;
      transition: transform 0.3s ease;
    }
    .leadership-card:hover i {
      transform: scale(1.2) rotate(8deg);
      color: #ff00ff;
    }
    .leadership-card h4 {
      color: #0088ff;
      margin-bottom: 8px;
      font-family: 'Orbitron', sans-serif;
    }
    .leadership-card p {
      opacity: 0.8;
      font-size: 0.9em;
    }
    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee:hover .leadership-track {
      animation-play-state: paused;
    }

    /* Work */
    #work {
      padding: 80px 20px;
      max-width: 1400px;
      margin: 0 auto;
    }
    #work .sub-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.8rem;
      margin: 40px 0 20px;
      color: #0088ff;
      text-align: center;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }
    .feature-card {
      background: #00030;
      backdrop-filter: blur(15px);
      padding: 30px;
      border-radius: 15px;
      border: 1px solid rgba(0,136,255,.15);
      text-align: center;
      transition: .4s;
      position: relative;
      overflow: hidden;
    }
    .feature-card:hover {
      transform: translateY(-10px) rotateY(5deg);
      box-shadow: 0 20px 50px rgba(0,136,255,.25);
      border-color: #ff00ff;
    }
    .feature-icon {
      font-size: 3em;
      color: #0088ff;
      margin-bottom: 15px;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .feature-card:hover .feature-icon {
      transform: scale(1.2) rotate(8deg);
      color: #ff00ff;
    }
    .feature-card h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.6em;
      margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 1em;
      opacity: .8;
    }

    /* Join */
    #join {
      text-align: center;
    }
    #join .join-text {
      max-width: 700px;
      margin: 20px auto 40px;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #d0d0d0;
      opacity: 0.95;
    }
    .join-buttons {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }
    .join-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 35px;
      border-radius: 50px;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    .join-btn.discord {
      background: #5865F2;
      color: #fff;
      box-shadow: 0 0 15px rgba(88,101,242,0.6);
    }
    .join-btn.discord:hover {
      background: #4752C4;
      transform: translateY(-5px);
      box-shadow: 0 0 25px rgba(88,101,242,0.9);
    }
    .join-btn.server {
      background: linear-gradient(45deg, #00bfff, #ff00ff);
      color: #000;
      box-shadow: 0 0 15px rgba(0,191,255,0.6);
    }
    .join-btn.server:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 0 25px rgba(255,0,255,0.8);
    }

    /* Footer */
    .site-footer {
      background: linear-gradient(180deg, #05050a 0%, #000 100%);
      padding: 50px 20px 20px;
      color: #ccc;
      border-top: 2px solid rgba(0, 136, 255, 0.3);
      margin-top: 50px;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-col h3.footer-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.8rem;
      background: linear-gradient(45deg, #0088ff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }
    .footer-col h4 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #fff;
    }
    .footer-col p {
      line-height: 1.6;
      opacity: 0.9;
      font-size: 0.95rem;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
    }
    .footer-col ul li a:hover {
      color: #00bfff;
      padding-left: 5px;
    }
    .footer-social {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .footer-social a {
      color: #fff;
      font-size: 1.8rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-social a:hover {
      color: #00bfff;
      transform: translateY(-5px) scale(1.2);
      text-shadow: 0 0 15px #00bfff;
    }
    .footer-bottom {
      margin-top: 30px;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      font-size: 0.9rem;
      color: #888;
    }

    /* Responsive */
    @media(max-width:768px){
      .quick-links{padding:0 20px}
      .quick-links ul{gap:15px}
      header{padding:15px 20px;top:40px}
      .progress-bar{top:calc(40px + 80px + 1px)}
      #hero{margin-top:100px}
      #about{grid-template-columns:1fr;text-align:center}
      .marquee{animation-duration:10s}
      .server-status{flex-direction:column;gap:10px}
    }

    /* Alap scrollbar stílus (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;              /* szélesség */
}

::-webkit-scrollbar-track {
  background: #0a0a0a;       /* háttér */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00bfff, #0066ff);
  border-radius: 10px;
  border: 2px solid #0a0a0a; /* kis rés a háttér és a thumb közt */
  box-shadow: 0 0 8px rgba(0, 136, 255, 0.7); /* kék fény */
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #33ccff, #3399ff);
  box-shadow: 0 0 15px rgba(0, 136, 255, 1); /* erősebb glow hoverkor */
}

/* Firefox támogatás */
* {
  scrollbar-width: thin;
  scrollbar-color: #0066ff #0a0a0a;
}


    
        .about-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #0088ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px #0088ff;
            animation: text-glitch 1.5s infinite;
        }

        @keyframes text-glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(2px, -2px); }
            60% { transform: translate(-2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        .about-text p {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            line-height: 1.8;
            color: #98a2b3;
            margin-bottom: 15px;
            text-align: justify;
        }

         .about-text p strong {
            color: #00bfff;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 0 8px rgba(0, 187, 255, 0.5);
        }

        .about-text  ul {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 15px;
        }

       .about-text  ul li {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            color: #98a2b3;
            position: relative;
            margin-bottom: 10px;
        }

       .about-text  ul li::before {
            content: '▹';
            color: #ff00ff;
            position: absolute;
            left: -20px;
            font-size: 1.2em;
        }

         @media (max-width: 768px) {
            .about-text {
                padding: 20px 10px;
            }

            .about-text {
                padding: 20px;
            }

            .about-text h1 {
                font-size: clamp(1.5rem, 3vw, 2rem);
            }

            .about-text p, .card ul li {
                font-size: clamp(0.9rem, 1.4vw, 1rem);
            }
        }
