/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}
:root {
  --primary: #3b82f6;
  --accent: #f59e0b;
  --bg: #0b0f19;
  --card: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --text: #e5e7eb;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #111827, #020617);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10,10,20,0.6);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}


.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00ffff;
}
.logo span {
  color: #ff8800;
}

nav ul.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul.nav-links li a {
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
nav ul.nav-links li a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #ff8800;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}
.dropbtn {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.dropbtn:hover {
  background: #222;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff8800;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #111;
  min-width: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px #00ffff55;
  z-index: 1000;
}
.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  transition: all 0.2s;
}
.dropdown-content a:hover {
  background: #222;
  color: #00ffff;
}
.dropdown:hover .dropdown-content { display: block; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #00ffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}


/*TEST*/

section {
  padding: 80px 20px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: radial-gradient(circle at top, #111827, #020617);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}


.hero-content {
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 750px;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: gainsboro;
  text-shadow: none;
  font-size: 3rem;
  background: linear-gradient(to right, #3b82f6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* ================= Glow Wrapper ================= */
.glow-wrapper {
  position: relative;
  display: inline-block;
}

/* ================= Base Glow ================= */
.glow {
  position: absolute;
  top: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none; /* ne zavarja a gombokat */
}

/* ================= Police Lights ================= */

/* Piros - bal oldal */
.glow.red {
  left: 20%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.897) 0%, rgba(255, 0, 0, 0.377) 80%);
  animation: redFlash 0.8s infinite linear;
}

/* Fehér - középen, ritkán villan */
.glow.white {
  left: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.678) 0%, rgba(255, 255, 255, 0.596) 90%);
  animation: whiteFlash 3s infinite linear;
  animation-delay: 0.3s; /* késleltetés a ritkább villanáshoz */
}

/* Kék - jobb oldal */
.glow.blue {
  left: 80%;
  background: radial-gradient(circle, rgba(0, 0, 255, 0.897) 0%, rgba(0, 0, 255, 0.616) 80%);
  animation: blueFlash 2s infinite linear;
  animation-delay: 0.8s; /* kicsit késleltetve a piros után */
}

/* ================= Keyframes ================= */

/* Piros villogás: lassú, pulzáló */
@keyframes redFlash {
  0%, 50%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  25%, 75% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.05); }
}

/* Fehér ritka villanás */
@keyframes whiteFlash {
  0%, 30%, 70%, 100% { opacity: 0.3; }
  40%, 60% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

/* Kék villogás: piros után */
@keyframes blueFlash {
  0%, 50%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.05); }
  25%, 75% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}


.siren-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #9ca2af;
  text-shadow: none;
}
.siren-red { color: #ff4d4d; }
.siren-white { color: #ffffff; }
.siren-blue { color: #074bdbff; }

/* CTA Buttons alap */


.cta {
  justify-content: center;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  position: relative;  /* FONTOS a z-index miatt */
  z-index: 3;
  border: none;
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(59,130,246,0.3);
  transition: all 0.3s ease;
}
.cta img { width: 28px; height: 28px; }

.cta:hover {
  background: linear-gradient(145deg,#ff8800,#ffaa00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #ff8800;
}
/* Discord gomb */
.cta.discord-blue {
  border: 2px solid #00ffff;
  background: linear-gradient(145deg,#00ffff,#007aff);
  color: #001018;
  box-shadow: 0 15px 40px rgba(59,130,246,0.4);
}
.cta.discord-blue:hover {
  background: linear-gradient(145deg,#00ffff,#00aaff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #00ffff;
}

/* Whitelist gomb */
.cta.whitelist {
  border: 2px solid #ffaa00;
  background: linear-gradient(145deg,#ffaa00,#ff8800);
  color: #001018;
  box-shadow: 0 6px 0 #cc6600,0 0 25px rgba(255,136,0,0.6);
}
.cta.whitelist:hover {
  background: linear-gradient(145deg,#ff8800,#ffaa00);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ff8800;
}


/* ================= RP INFO ================= */

.rp-cards { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; margin: 50px auto; max-width: 1200px; }
.rp-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 20px 25px;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}
.rp-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #ff8800; }
.rp-card p { color: #ddd; font-size: 0.95rem; line-height: 1.4; }
.highlight { color: #00ffff; font-weight: 700; }
.rp-button, .hall-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #00ffff;
  color: #111;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s;
}
.rp-button:hover, .hall-button:hover { background: #ff8800; color: #111; transform: translateY(-2px); }

/* ================= POSTS SECTION ================= */
.posts-section {
  display: flex;
  flex-direction: column;
  align-items: center;       /* minden section elem középre */
  gap: 35px;                 /* max 35px távolság */
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0);
  border-radius: 15px;
  box-shadow: 0 0 0px #00ffff55, 0 0 0px #ff880066;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.posts-section h2 {
  text-align: center;
  color: #f0f0f0;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  text-shadow: none;
  font-size: 2rem;
  font-weight: 700;
}
.posts-section h2:hover {
  box-shadow: 0 0 20px #00ffff, 0 0 35px #ff8800;
}

.posts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.post-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: none;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #ff880066, 0 0 35px #00ffff55;
}
.post-card h3 { color: #ff8800; font-size: 1.3rem; margin-bottom: 12px; }
.post-card p { color: #ddd; font-size: 0.95rem; margin-bottom: 8px; }
.post-meta { font-size: 0.8rem; color: #aaa; text-align: right; }

/* ================= DISCORD EVENT SECTION ================= */
.discord-event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 50px 20px;
  background: rgba(0,0,0,0);
  border-radius: 15px;
  box-shadow: 0 0 0px #00ffff55, 0 0 0px #ff880066;
  margin-bottom: 35px;
}

.discord-event-card h2 {
  background: none;
  border: none;
  text-shadow: none;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #f0f0f0;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.discord-event-card h2:hover {
  box-shadow: 0 0 20px #00ffff, 0 0 35px #ff8800;
}

.event-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s;
}
.event-card img { width: 80px; height: 80px; border-radius: 50%; }
.event-info { flex: 1; }
.event-info h3 { color: #ff8800; font-size: 1.4rem; margin-bottom: 10px; }
.event-info p { color: #ddd; margin-bottom: 5px; }
.event-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(145deg,#00ffff,#007aff);
  color: #111;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,255,255,0.5);
}
.event-btn:hover {
  background: linear-gradient(145deg,#ff8800,#ffaa00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #ff8800;
}

/* ================= SOCIAL MEDIA SECTION ================= */
/* 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 {
    background: var(--card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    box-shadow: none;
    display: flex;
    gap: 1rem;
    flex-direction: column;      /* FONTOS */
    justify-content: space-between; /* gomb mindig ugyanott marad */
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    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; }
  .instagram  { --accent: #E1306C; }

  .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); }
  .instagram  .sm-icon { background: linear-gradient(180deg, rgba(225,48,108,0.12), rgba(225,48,108,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);
  }
  /* social media icons*/

/* Színek a platformokhoz */
  .facebook { --accent: #1877F2; }
  .tiktok  { --accent: #010101; }
  .email   { --accent: #E34F26; }
  .instagram  { --accent: #E1306C; }

  
  .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); }
  .instagram  .sm-icon { background: linear-gradient(180deg, rgba(225,48,108,0.12), rgba(225,48,108,0.06)); color: var(--accent); }


.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%);
}


  /* 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); }
  .instagram .sm-btn {background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af); /* Instagram gradient */color: white;border: none;}
  .instagram .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; }
  }
/* ================= FOOTER ================= */
footer {
  margin-top: 80px;
  padding: 60px 20px 30px;

  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.6)
  );

  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(59,130,246,0.5),
    transparent
  );
}
.footer-logo h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;

  background: linear-gradient(to right, #3b82f6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-logo h2 span { color: #ff8800; }
.footer-logo p {
  color: #9ca3af;
  margin-top: 10px;
  font-size: 0.95rem;
}
.footer-bottom p {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #6b7280;
}


/* ================= MEDIA QUERIES ================= */
@media (max-width: 992px) {
  nav ul.nav-links { gap: 20px; }
  .rp-cards { flex-direction: column; align-items: center; }
  .posts-container { flex-direction: column; align-items: center; }
  .social-media { flex-direction: column; align-items: center; }
  .event-card { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .siren-text { font-size: 1.6rem; }
  .cta { width: 100%; justify-content: center; font-size: 0.95rem; padding: 12px 20px; }
}

@media (max-width: 576px) {
  header { flex-direction: column; gap: 15px; padding: 15px; }
  .dropdown, .nav-links { width: 100%; text-align: center; }
  .hamburger { display: flex; }
  nav ul.nav-links { flex-direction: column; gap: 15px; display: none; }
  nav ul.nav-links.active { display: flex; }
}


/*Hall of fame button*/


/* 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%; }
}


@media (max-width: 768px) {
  .hero-content {
    gap: 20px;
  }

  .cta {
    width: 100%;
  }
}


/**********************************************************/
/********************** SPECIAL ***************************/
/**********************************************************/

html {
  scroll-behavior: smooth;
}

section {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}