/* RESET */
* { margin:0; padding:0; box-sizing:border-box; font-family:"Segoe UI",sans-serif; scroll-behavior:smooth; }

/* BODY & HÁTTÉR */
body {
  background-image: url('../assets/images/RPLogo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color:#e5e5e5;
  overflow-x:hidden;
}
/* Tiltás minden szövegre az egész oldalon */
body, body * {
    user-select: none;          /* Alapértelmezett tiltás */
    -webkit-user-select: none;  /* Safari / Chrome */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
}

@media (max-width:1024px){ body{background-attachment:scroll;} }

/* HEADER */
header {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 40px; background:rgba(0, 0, 0, 0.75); backdrop-filter:blur(8px);
  border-bottom:0px solid rgba(0,180,255,0.3); box-shadow:0 0 25px #00bfff0e;
  position:sticky; top:0; z-index:1000;
}

.logo{ font-size:2rem; font-weight:700; color:#00bfff; text-shadow:0 0 12px #00bfff; }
.logo span{ color:#ff8800; text-shadow:0 0 12px #ff8800; }

/* NAV */
.nav-links{ list-style:none; display:flex; gap:30px; }
.nav-links li a{ color:#00bfff; text-decoration:none; font-weight:500; text-shadow:0 0 8px #00bfff; transition:0.3s; }
.nav-links li a:hover{ color:#ff8800; text-shadow:0 0 12px #ff8800; }

/* DROPDOWN */
.dropdown{ position:relative; }
.dropbtn{ background:none; border:none; color:#00bfff; cursor:pointer; text-shadow:0 0 8px #00bfff; transition:0.3s; font-size:1rem; }
.dropbtn:hover{ color:#ff8800; text-shadow:0 0 12px #ff8800; }
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(10,10,12,0.95);
  border-radius: 10px;
  top: 40px;
  min-width: 180px;
  max-width: 220px;      /* menü szélesség maximalizálása */
  border: 1px solid #222;
  overflow: hidden;
  box-shadow: 0 0 20px #00bfff55;

  /* nagyobb balra tolás */
  right: auto;
  left: -40px;           /* előző -20px helyett -40px */
}
.dropdown-content a{ display:block; padding:12px 15px; color:#eee; text-decoration:none; transition:0.3s; }
.dropdown-content a:hover{ background:rgba(255,136,0,0.15); color:#ff8800; }
.dropdown-content.show{ display:block; }
/* HAMBURGER */
.hamburger{ display:none; font-size:1.8rem; color:#ff8800; cursor:pointer; }
.hamburger span{ display:block; height:3px; width:25px; background:#ff8800; margin:4px 0; border-radius:2px; }
/* Posztok */
.posts-section{ padding:60px 20px; text-align:center; }
.posts-section h2 {font-size: 2.2rem;text-shadow: 0 0 12px #000000;margin-bottom: 40px;color: #00bfff; display: inline-block;padding: 8px 18px; border: 2px solid #000000; border-radius: 10px; box-shadow: 0 0 15px #00bfff66; background: rgba(0, 0, 0, 0.521); }
.posts-container{ display:flex; flex-wrap:wrap; gap:25px; justify-content:center; }
.post-card{ background:rgba(0,0,0,0.55); padding:25px; width:280px; border-radius:15px; border:1px solid rgba(0,180,255,0.25); box-shadow:0 0 20px #00bfff33; transition:0.3s; text-align:left; }
.post-card:hover{ transform:translateY(-6px); box-shadow:0 0 25px #ff880066; }
.post-card h3{ margin-bottom:10px; color:#ff8800; }
.post-card p{ margin-bottom:12px; color:#ddd; }
.post-meta{ font-size:0.85rem; color:#aaa; }
/* Social media */
  .social-media-section {
    max-width: 1100px;
    margin: 2rem auto;
    padding:60px 20px;
    text-align:center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }
  .social-media-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 0 0 12px #080808;
    color: #00bfff;
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #000000;
    border-radius: 10px; 
    box-shadow: 0 0 15px #00bfff66; 
    background: rgba(0, 0, 0, 0.521);
   }
  .social-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  .sm-card {
    display: flex;
    gap: 1rem;
    flex-direction: column;      /* FONTOS */
    justify-content: space-between; /* gomb mindig ugyanott marad */
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(6, 58, 71, 0.98), rgba(40, 6, 56, 0.582));
    border: 1px solid rgba(0, 0, 0, 0.664);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(12,12,12,0.04);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .sm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(12,12,12,0.08);
  }
  .sm-icon {
    flex: 0 0 56px;
    height: 56px;
    width: 56px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0,0,0,0.04);
  }
  .sm-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
  .sm-body h3 {
    margin: 0;
    font-size: 1.05rem;
  }
  .sm-body p {
    margin: .4rem 0 0.7rem 0;
    font-size: .92rem;
    color: #eceaea;
    line-height: 1.3;
  }
  .sm-btn {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease;
  }
  .sm-btn:active { transform: translateY(1px); }
  /* Színek a platformokhoz */
  .discord { --accent: #5865F2; }
  .facebook { --accent: #1877F2; }
  .tiktok  { --accent: #010101; }
  .email   { --accent: #E34F26; }

  .discord .sm-icon { background: linear-gradient(180deg, rgba(88,101,242,0.12), rgba(88,101,242,0.06)); color: var(--accent); }
  .facebook .sm-icon { background: linear-gradient(180deg, rgba(24,119,242,0.12), rgba(24,119,242,0.06)); color: var(--accent); }
  .tiktok  .sm-icon { background: linear-gradient(180deg, rgba(1,1,1,0.08), rgba(1,1,1,0.03)); color: var(--accent); }
  .email   .sm-icon { background: linear-gradient(180deg, rgba(227,79,38,0.12), rgba(227,79,38,0.06)); color: var(--accent); }

  .sm-card .sm-btn {
    background: linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.03));
    color: #111;
    border: 1px solid rgba(0,0,0,0.06);
  }

  /* Gomb színezése platformonként (kontraszt + hover) */
  .discord .sm-btn { background: var(--accent); color: white; border: none; }
  .discord .sm-btn:hover { opacity: 0.92; transform: translateY(-1px); }
  .facebook .sm-btn { background: var(--accent); color: white; border: none; }
  .facebook .sm-btn:hover { opacity: 0.92; transform: translateY(-1px); }
  .tiktok .sm-btn { background: #111; color: white; border: none; }
  .tiktok .sm-btn:hover { opacity: 0.92; transform: translateY(-1px); }
  .email .sm-btn { background: var(--accent); color: white; border: none; }
  .email .sm-btn:hover { opacity: 0.92; transform: translateY(-1px); }

  /* Mobilon tágasabb padding */
  @media (max-width: 420px) {
    .sm-card { padding: .8rem; gap: .6rem; }
    .sm-icon { width: 48px; height: 48px; }
  }

/* MOBIL */
@media(max-width:768px){
  .hamburger{ display:block; }
  .nav-links{ display:none; flex-direction:column; position:absolute; top:80px; right:20px; width:220px; background:rgba(0,0,0,0.9); border:1px solid #222; border-radius:12px; padding:15px; box-shadow:0 0 25px #00bfff55; }
  .nav-links.active{ display:flex; }
  .dropdown-content{ position:static; box-shadow:none; border:none; }
  .sm-card { padding: .8rem; gap: .6rem; }
  .sm-icon { width: 48px; height: 48px; }
}

/* HERO */
.hero{ text-align:center; padding:160px 20px; background:rgba(0,0,0,0.55); backdrop-filter:blur(4px);}
.hero h1{ font-size:3rem; text-shadow:0 0 15px #00bfff; }
.hero h1 span{ color:#ff8800; text-shadow:0 0 15px #ff8800; }
.hero p{ margin-top:15px; color:#ddd; font-size:1.2rem; }
.cta{ margin-top:30px; padding:12px 30px; border:2px solid #00bfff; color:#00bfff; border-radius:30px; background:rgba(0,0,0,0.4); transition:0.3s; cursor:pointer; }
.cta:hover{ background:#ff8800; border-color:#ff8800; color:#fff; box-shadow:0 0 20px #ff8800; }

/* RP KÁRTYÁK */
.rp-cards{ display:flex; gap:30px; flex-wrap:wrap; justify-content:center; margin-top:40px; }
.rp-card{ background:rgba(0,0,0,0.55); backdrop-filter:blur(4px); padding:25px; width:280px; border-radius:15px; border:1px solid rgba(0,180,255,0.25); box-shadow:0 0 25px #00bfff22; transition:0.3s; }
.rp-card:hover{ transform:translateY(-6px); box-shadow:0 0 20px #ff880066; }
/* === H3 alatti vonal === */
.rp-card h3 {
  margin-bottom: 10px;
  padding-bottom: 8px;
  position: relative;
}
.rp-card h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* vonal vastagsága */
  background-color: #00bfff; /* vonal színe */
  margin-top: 8px;
  border-radius: 2px;
}
/* === Szavak kiemelése === */
.highlight {
  color: #ff8800;       /* szöveg színe */
  font-weight: 700;      /* vastag betű */
  text-shadow: 0 0 6px #ff8800; /* enyhe glow effekt */
  background-color: rgba(0, 0, 0, 0.2); /* opcionális háttér */
  padding: 0 4px;
  border-radius: 3px;
  transition: 0.3s;
}
.highlight:hover {
  background-color: rgba(255, 136, 0, 0.2);
  text-shadow: 0 0 10px #ff8800;
}

/* FOOTER */
footer{ background:rgba(0,0,0,0.75); backdrop-filter:blur(6px); padding:30px 20px;text-align:center; }
.footer-logo h2{ color:#00bfff; text-shadow:0 0 10px #00bfff; }
.footer-logo span{ color:#ff8800; text-shadow:0 0 10px #ff8800; }

/* MODAL */
.modal{ display:none; position:fixed; inset:0; background:rgba(0,0,0,0.85); backdrop-filter:blur(6px); z-index:10000; }
.modal-content{ background:rgba(0,0,0,0.55); border:2px solid #00bfff; padding:35px; border-radius:18px; width:90%; max-width:500px; margin:8% auto; color:#eee; box-shadow:0 0 35px #00bfff55; }
.close{ position:absolute; top:10px; right:15px; background:none; border:none; font-size:1.8rem; color:#ff8800; cursor:pointer; }


/** index.php */
  #joinBtn {
    display: inline-flex;     /* csak a gomb belső tartalma lesz flex */
    align-items: center;      /* ikon + szöveg függőlegesen középen */
    gap: 6px;                 /* távolság az ikon és a szöveg között */
}

  .discord-blue {
    width: 18px;            /* opcionális */
    height: 18px;           /* opcionális */
    margin-right: 6px;      /* hogy ne érjen a szöveghez */
    
    /* KÉKRE SZÍNEZÉS FILTERREL */
    filter: invert(39%) sepia(96%) saturate(2594%) hue-rotate(209deg) brightness(96%) contrast(101%);
}

.tiktok-white {
    width: 18px;
    height: 18px;
    margin-right: 6px;

    /* Fehér alap + vastagabb TikTok neon hatás */
    filter: 
        brightness(0) invert(1)
        drop-shadow(-2px 0 #25f4ee)  /* kék árnyék balra */
        drop-shadow(2px 0 #fe2c55)   /* piros árnyék jobbra */
        drop-shadow(-1px 0 #25f4ee)  /* extra kék árnyék a vastagság növeléséhez */
        drop-shadow(1px 0 #fe2c55);  /* extra piros árnyék */
}

.email-orange {
    width: 18px;            /* opcionális */
    height: 18px;           /* opcionális */
    margin-right: 6px;      /* hogy ne érjen a szöveghez */
    
    /* NARANCS SZÍNEZÉS FILTERREL */
    filter: invert(48%) sepia(88%) saturate(600%) hue-rotate(10deg) brightness(100%) contrast(100%);
}

.discord-link-row {
    font-weight: bold;           /* csak példa */
    color: #5865F2;              /* Discord-lila / kék */
    padding: 4px 0;
}

.discord-link-row a {
    color: #1e90ff;              /* link szín */
    text-decoration: none;
}

.discord-link-row a:hover {
    text-decoration: underline;
}
.whitelist-link-row {
    font-weight: bold;           /* csak példa */
    color: #dedee6;              /* Discord-lila / kék */
    padding: 4px 0;
}

.whitelist-link-row a {
    color: #1e90ff;              /* link szín */
    text-decoration: none;
}

.whitelist-link-row a:hover {
    text-decoration: underline;
}

.discord-widget-box {
    width: 360px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
    margin: 20px auto;
}

.discord-widget-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.discord-widget-title img {
    width: 24px;
    height: 24px;
    filter: invert(39%) sepia(96%) saturate(2594%) hue-rotate(209deg) brightness(96%) contrast(101%);
}

/* Join button */
.discord-join-btn {
    display: block;
    margin-top: 15px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
}

.discord-join-btn:hover {
    background: #4752C4;
}

.moderator-section {
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}
  .moderator-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 0 0 12px #080808;
    color: #00bfff;
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #000000;
    border-radius: 10px; 
    box-shadow: 0 0 15px #00bfff66; 
    background: rgba(0, 0, 0, 0.521);
   }

.moderator-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0 20px;
}

.moderator-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    width: 250px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.moderator-card:hover {
    transform: translateY(-5px);
}

.mod-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #5865F2;
}

.mod-name {
    font-size: 20px;
    color: white;
    margin: 5px 0;
}

.mod-user {
    font-size: 14px;
    color: #7aaaff;
}

.mod-role {
    font-size: 15px;
    color: #bdbdbd;
    margin-bottom: 10px;
}
.moderator-card .mod-role {
    display: inline-block;
    background: linear-gradient(135deg, #4c4cff, #00e1ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 15px;
    margin: 5px 0;
    box-shadow: 0 0 8px rgba(0, 195, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effekt a kártyán belül */
.moderator-card:hover .mod-role {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(0, 195, 255, 0.6);
}

.mod-footer {
    margin-top: 10px;
    font-size: 13px;
    color: #e0e0e0;
    opacity: 0.8;
}
/** HERO */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #ffffff01;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01));
  z-index: 1;
  animation: overlayMove 20s linear infinite;
}

@keyframes overlayMove {
  0% { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;

  display: flex;          /* Flexbox elrendezés */
  flex-direction: column; /* Függőleges elrendezés */
  align-items: center;    /* Középre igazítás */
  gap: 25px;              /* Távolság a szöveg és a gomb között */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.76);
}

.glow-wrapper {
  position: relative;
  display: inline-block;
}

/* Szöveg */
.siren-text {
  position: relative;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: white;
  text-shadow:
    0 0 5px rgba(255,255,255,0.9),
    0 0 10px rgba(255,255,255,0.7),
    0 0 20px rgba(255,255,255,0.5);
}

/* Glow körök */
.glow {
  position: absolute;
  top: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 1;
  mix-blend-mode: screen;
  animation: glowPulse 2s infinite alternate, glowMove 4s infinite alternate ease-in-out;
}

.glow.red {
  left: 22%;
  background: radial-gradient(circle, rgba(255,77,77,0.8) 0%, rgba(255,77,77,0) 70%);
}

.glow.blue {
  left: 77%;
  background: radial-gradient(circle, rgba(7,75,219,0.8) 0%, rgba(7,75,219,0) 70%);
}

/* Pulzáló animáció */
@keyframes glowPulse {
  0%, 40%, 100% { opacity: 1; }
  50%, 90% { opacity: 0.7; }
}

/* Mozgó animáció (kissé oldalirányban) */
@keyframes glowMove {
  0% { transform: translate(-50%, -50%) translateX(0px); }
  50% { transform: translate(-50%, -50%) translateX(15px); }
  100% { transform: translate(-50%, -50%) translateX(0px); }
}

.glow.red { animation-name: glowPulse, glowMove; }
.glow.blue { 
  animation-name: glowPulse, glowMove;
  animation-direction: alternate-reverse, alternate-reverse; /* ellenkező irányban mozogjon */
}

/* Színek text-shadow (opcionális) */
.siren-red { color: #ff4d4d; }
.siren-white { color: #ffffff; }
.siren-blue { color: #074bdbff; }


.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7289da, #99aab5);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
  background: linear-gradient(135deg, #99aab5, #7289da);
}

.cta img.discord-blue {
  width: 24px;
  height: 24px;
}


.rp-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #1d1d1d, #2c2c2c, #1d1d1d);
    background-size: 200% 200%;
    animation: changelogBG 6s ease infinite;
    color: #00e1ff; /* neon cyan – programozói/terminal hatás */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: "Courier New", monospace; /* terminal style */
    border: 1px solid #00e1ff66;
    transition: 0.3s ease;
    box-shadow: 0 0 8px #00e1ff33;
}

/* hover – világosabb neon, enyhe glow */
.rp-button:hover {
    color: #ffffff;
    background-position: 100% 0;
    box-shadow: 0 0 12px #00e1ff88;
    transform: translateY(-2px);
}

/* finoman mozgó háttér, mint egy „activity log” */
@keyframes changelogBG {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}


/* Kiemelés a strong elemekhez */
.rp-card p strong {
    color: #ffcc00;          /* arany sárga kiemelés */
    font-weight: 700;        /* erősebb vastagság */
    text-shadow: 0 0 6px rgba(255, 204, 0, 0.5); /* finom fényhatás */
}

/* Animált gradient háttér a gombhoz */
.hall-button {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #2a1f6c, #4c3bd8, #1c1c1c, #2a1f6c);
    background-size: 300% 300%;
    animation: hallButtonBG 6s ease infinite;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(100, 100, 255, 0.4);
    transform-style: preserve-3d;
}

/* Hover effekt – fényesebb, kicsit kiemelkedik */
.hall-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(120, 120, 255, 0.6);
}

/* Gomb animált háttérgradiense */
@keyframes hallButtonBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* MODAL STÍLUS */
.mod-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}

.mod-modal-content {
    background: #1d1d1d;
    color: #fff;
    padding: 25px;
    max-width: 430px;
    width: 90%;
    margin: 80px auto;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 195, 255, 0.3);
    animation: fadeIn 0.3s ease;
}

.mod-modal-content img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.mod-close {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #bbb;
}

.mod-close:hover {
    color: #fff;
}

.mod-desc {
    margin-top: 15px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
#modModalRole {
    display: inline-block;
    background: linear-gradient(135deg, #4c4cff, #00e1ff);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 5px 0;
    box-shadow: 0 0 12px rgba(0, 195, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tiltjuk a kijelölést a teljes staff szekcióban */
.moderator-section,
.moderator-section * {
    user-select: none;       /* Alapértelmezett tiltás */
    -webkit-user-select: none; /* Safari / Chrome */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
}

/* Tiltjuk a kijelölést a popup modalban */
.mod-modal,
.mod-modal * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
