@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Poppins:wght@400;600&display=swap');
@import url(global.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #080808;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}


.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}

.angel-light {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.25), transparent 70%);
  filter: blur(60px);
  animation: angelPulse 8s ease-in-out infinite alternate;
}

.demon-fire {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(circle at 40% 60%, rgba(255,60,0,0.15), transparent 70%);
  filter: blur(40px);
  animation: fireGlow 6s ease-in-out infinite alternate;
}

.smoke {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: url('https://www.transparenttextures.com/patterns/smoke.png');
  opacity: 0.05;
  animation: smokeMove 120s linear infinite;
}

@keyframes fireGlow {
  0% { opacity: 0.25; transform: scale(1); }
  100% { opacity: 0.4; transform: scale(1.05); }
}

@keyframes angelPulse {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0.35; transform: scale(1.1); }
}

@keyframes smokeMove {
  from { transform: translate(0,0); }
  to { transform: translate(-50%, -50%); }
}


.join-hero {
  text-align: center;
  padding: 6rem 2rem;
}

.join-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #ccc;
}


.gate-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.gate {
  position: relative;
  flex: 1 1 400px;
  max-width: 480px;
  padding: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1; /* alap */

}
.gate > * {
  position: relative;
  z-index: 3; 
}
.particle-wrapper {
  z-index: 2;
}

.gate:hover {
  transform: scale(1.03);
}


.gate--angel {
  position: relative;
  background-color: #1a1a1a;
  box-shadow: 0 0 20px rgba(200,200,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.gate--angel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/heaven-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(1.1) saturate(1.2);
  z-index: 1;
}


.gate--angel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5) 0%, rgba(0,0,0,0) 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: 2;
}


.gate--angel > * {
  position: relative;
  z-index: 3;
}
.gate--angel:hover {
  box-shadow: 0 0 40px rgba(255,255,200,0.3);
}


.gate--demon {
  position: relative;
  background-color: #1a0000;
  box-shadow: 0 0 20px rgba(255,60,0,0.3);
  border: 1px solid rgba(255,60,0,0.3);
  overflow: hidden;
}
.gate--demon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hell-bg.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.9) saturate(1.4);
  z-index: 1;
}


.gate--demon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255,60,0,0.4) 0%, rgba(0,0,0,0) 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: 2;
}


.gate--demon > * {
  position: relative;
  z-index: 3;
}
.gate--demon:hover {
  box-shadow: 0 0 40px rgba(255,80,0,0.4);
}


.gate h2 {
  font-family: 'Cinzel Decorative', serif;
  margin-bottom: 1rem;
}

.gate p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.server-info {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn.angel {
  background: linear-gradient(90deg, #fff, #ffd700);
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,200,0.2);
  animation: angelGlow 4s ease-in-out infinite;
}
.btn.angel:hover {
  box-shadow: 0 0 25px rgba(255,255,200,0.5);
}

.btn.demon {
  background: linear-gradient(90deg, #b52000, #5c0000);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(255, 50, 0, 0.4);
  transition: all 0.3s ease;
}

.btn.demon:hover {
  background: linear-gradient(90deg, #ff3c00, #7a0000);
  box-shadow: 0 0 30px rgba(255, 80, 0, 0.7);
  transform: scale(1.03);
}

.copy-btn {
  margin-left: 1rem;
  background: linear-gradient(90deg, #8c1a00, #400000);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 40, 0, 0.3);
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: linear-gradient(90deg, #c62800, #5a0000);
  box-shadow: 0 0 30px rgba(255, 80, 0, 0.8);
  transform: scale(1.05);
}
.btn.demon::after, .copy-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(255,60,0,0.5), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}



.features {
  text-align: center;
  padding: 5rem 2rem;
  background: rgba(0,0,0,0.6);
}

.features h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: rgba(25,25,25,0.85);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.feature span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.feature h4 {
  color: #ff3c00;
  margin-bottom: 0.3rem;
}

.particle-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}


.particle-wrapper--angel::before,
.particle-wrapper--angel::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  background-image: radial-gradient(rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%),
                    radial-gradient(rgba(255,255,200,0.6) 0%, rgba(255,255,200,0) 60%),
                    radial-gradient(rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%);
  background-size: 3px 3px, 2px 2px, 1px 1px;
  background-repeat: repeat;
  filter: blur(0.5px);
  animation: angelParticles 12s linear infinite;
  opacity: 0.6;
}

.particle-wrapper--angel::after {
  animation-duration: 16s;
  animation-direction: reverse;
  opacity: 0.4;
  filter: blur(1px);
}

@keyframes angelParticles {
  0%   { transform: translateY(-5%) translateX(0); }
  100% { transform: translateY(5%) translateX(-2%); }
}


.particle-wrapper--demon::before,
.particle-wrapper--demon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
}


.particle-wrapper--demon::before {
  background-image: radial-gradient(rgba(255,80,0,0.6) 0%, rgba(255,80,0,0) 60%),
                    radial-gradient(rgba(255,140,0,0.4) 0%, rgba(255,140,0,0) 60%);
  background-size: 3px 3px, 2px 2px;
  background-repeat: repeat;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  filter: blur(0.6px);
  animation: demonEmbers 8s linear infinite;
  opacity: 0.4;
}


.particle-wrapper--demon::after {
  background: radial-gradient(circle at 50% 80%, rgba(255,60,0,0.4) 0%, rgba(0,0,0,0) 70%);
  mix-blend-mode: screen;
  filter: blur(20px);
  animation: heatWave 2.5s ease-in-out infinite;
  opacity: 0.35;
}

@keyframes demonEmbers {
  0%   { transform: translateY(5%) translateX(0) scale(1);   opacity: 0.4; }
  100% { transform: translateY(-5%) translateX(2%) scale(1.05); opacity: 0.6; }
}


@keyframes heatWave {
  0%   { transform: translateY(0) scaleX(1) scaleY(1); filter: blur(18px); opacity: 0.3; }
  50%  { transform: translateY(-2px) scaleX(1.03) scaleY(0.97); filter: blur(22px); opacity: 0.4; }
  100% { transform: translateY(0) scaleX(1) scaleY(1); filter: blur(18px); opacity: 0.3; }
}

@keyframes angelGlow {
  0%   { box-shadow: 0 0 15px rgba(255,255,200,0.2); }
  50%  { box-shadow: 0 0 25px rgba(255,255,200,0.5); }
  100% { box-shadow: 0 0 15px rgba(255,255,200,0.2); }
}

@keyframes demonGlow {
  0%   { box-shadow: 0 0 15px rgba(255,60,0,0.2); }
  50%  { box-shadow: 0 0 25px rgba(255,60,0,0.5); }
  100% { box-shadow: 0 0 15px rgba(255,60,0,0.2); }
}