@charset "UTF-8";
/* ============================================================
   HORIZON MOBILE — PREMIUM CSS REDESIGN
   ============================================================ */

:root {
  --bg-main:        #08080b;
  --bg-card:        #0f0f14;
  --bg-card-hover:  #14141b;
  --bg-glass:       rgba(15, 15, 20, 0.7);
  --primary:        #ff8c00;
  --primary-hover:  #ffa020;
  --primary-dim:    rgba(255, 140, 0, 0.12);
  --primary-glow:   rgba(255, 140, 0, 0.35);
  --text-main:      #f0f0f8;
  --text-muted:     #7a7e96;
  --text-soft:      #a0a4bc;
  --border:         rgba(255, 255, 255, 0.06);
  --border-bright:  rgba(255, 255, 255, 0.12);
  --success:        #22d3a5;
  --warning:        #f59e0b;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --transition:     0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* == RESET & BASE ======================================─ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange  { color: var(--primary); }
.text-success { color: var(--success); }

/* == CURSOR GLOW ======================================─ */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* == BUTTONS ==========================================─ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 11px 22px;
  border-radius: var(--radius-sm); font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  border: none; font-family: inherit; font-size: 0.9rem;
  letter-spacing: 0.3px; white-space: nowrap;
}

.btn-primary {
  background: var(--primary); color: #000;
  box-shadow: 0 0 20px rgba(255,140,0,0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 35px rgba(255,140,0,0.5);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-discord {
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  color: #a0a9ff;
}
.btn-discord:hover {
  background: rgba(88,101,242,0.25);
  border-color: rgba(88,101,242,0.6);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* == HEADER ============================================ */
.header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(8,8,11,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.5px;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #000; font-size: 1rem;
  box-shadow: 0 0 15px rgba(255,140,0,0.4);
}
.logo-orange { color: var(--primary); }

.nav-links {
  display: flex; gap: 6px;
}
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

.header-actions { display: flex; gap: 10px; align-items: center; }

/* == HERO ============================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  padding-top: 90px; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px; top: 20%; right: -100px;
  background: radial-gradient(circle, rgba(255,60,0,0.1) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px; bottom: 10%; left: 40%;
  background: radial-gradient(circle, rgba(255,140,0,0.08) 0%, transparent 70%);
  animation: orbFloat 6s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.25);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  color: var(--primary); text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 8px rgba(245,158,11,0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: -1px;
}
.title-gradient {
  background: linear-gradient(135deg, #ff8c00 0%, #ff4500 50%, #ff8c00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-soft);
  margin-bottom: 40px; max-width: 600px; line-height: 1.7;
}

.hero-stats {
  display: flex; align-items: center; gap: 30px;
  margin-bottom: 44px;
}
.stat-item { text-align: left; }
.stat-num {
  display: block; font-size: 1.5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.stat-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-bright);
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: fadeUp 1s ease 0.6s both;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--primary);
  border-radius: 2px; animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* == SECTION BASE ====================================== */
.section { padding: 100px 0; position: relative; z-index: 2; }

.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 14px;
  padding: 5px 14px; border-radius: 50px;
  background: var(--primary-dim); border: 1px solid rgba(255,140,0,0.2);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px;
}

/* == ROLES GALLERY ====================================─ */
.side-section { overflow: hidden; padding-bottom: 100px; }
.gallery-wrapper {
  position: relative; width: 100%; max-width: 1500px;
  margin: 0 auto; height: 580px; padding: 0 24px;
}
.gallery-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw; font-weight: 900; line-height: 1;
  letter-spacing: 20px; font-family: 'Montserrat', sans-serif;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.07);
  z-index: 0; pointer-events: none; white-space: nowrap;
  user-select: none;
}
.gallery-container {
  display: flex; gap: 10px; width: 100%; height: 100%;
  position: relative; z-index: 1;
}
.gallery-item {
  flex: 1; position: relative; border-radius: 18px;
  overflow: hidden; cursor: pointer;
  background: rgba(12,12,18,0.8);
  filter: grayscale(100%) brightness(0.7);
  border: 1px solid var(--border);
  transition: all 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(4px);
}
.gallery-item-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--role-color) 0%, rgba(8,8,11,0.97) 80%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.25; transition: opacity 0.65s ease; z-index: 1;
}
.gallery-icon {
  font-size: 4.5rem; color: rgba(255,255,255,0.18);
  transition: all 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-15px);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(8,8,11,1) 0%, transparent 55%);
}
.gallery-item-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 28px 22px;
  transform: translateY(12px); opacity: 0;
  transition: all 0.5s ease;
}
.role-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 6px; opacity: 0.85;
}
.gallery-item-content h3 {
  font-size: 1.5rem; font-weight: 900; color: #fff;
  margin-bottom: 3px; letter-spacing: -0.3px;
}
.gallery-item-content p {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 500;
}

/* active / hover */
.gallery-item:hover, .gallery-item.active {
  flex: 3.5; filter: grayscale(0%) brightness(1);
  border-color: rgba(255,140,0,0.35);
  box-shadow: 0 0 50px rgba(255,140,0,0.12), inset 0 0 30px rgba(0,0,0,0.3);
}
.gallery-item:hover .gallery-item-bg,
.gallery-item.active .gallery-item-bg { opacity: 0.75; }

.gallery-item:hover .gallery-icon,
.gallery-item.active .gallery-icon {
  color: rgba(255,255,255,0.45);
  transform: translateY(-25px) scale(1.1);
}
.gallery-item:hover .gallery-item-content,
.gallery-item.active .gallery-item-content {
  transform: translateY(0); opacity: 1; transition-delay: 0.08s;
}

@media (max-width: 900px) {
  .gallery-wrapper { height: 420px; }
  .gallery-bg-text { font-size: 28vw; letter-spacing: 5px; }
}
@media (max-width: 650px) {
  .gallery-container { flex-direction: column; height: 700px; }
  .gallery-bg-text { display: none; }
  .gallery-item:hover, .gallery-item.active { flex: 2.5; }
}

/* == RULES SECTION ====================================─ */
.rules-section { background: var(--bg-card); position: relative; }
.rules-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.3), transparent);
}
.rules-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.2), transparent);
}

/* Tabs nav */
.tabs-wrapper {
  position: relative; margin-bottom: 44px;
}
.tabs-nav {
  display: flex; gap: 6px; flex-wrap: wrap;
  background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 6px;
  backdrop-filter: blur(10px);
}
.tab-btn {
  flex: 1; min-width: 120px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-family: inherit; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted); background: transparent;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--transition); white-space: nowrap;
}
.tab-btn i { font-size: 0.9rem; }
.tab-btn:hover { color: var(--text-main); background: rgba(255,255,255,0.04); }
.tab-btn.active {
  background: var(--primary); color: #000;
  box-shadow: 0 2px 15px rgba(255,140,0,0.4);
}

/* Tab panels */
.tab-panel { display: none; animation: fadeUp 0.4s ease; }
.tab-panel.active { display: block; }

/* Rules grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 20px;
}
.rule-card {
  position: relative; overflow: hidden;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: all var(--transition);
}
.rule-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--ri, var(--primary));
  opacity: 0.6; transition: opacity var(--transition);
}
.rule-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.rule-card:hover::before { opacity: 1; }

.rule-num {
  position: absolute; top: 18px; right: 20px;
  font-size: 2rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none;
}
.rule-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ri, var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
  transition: all var(--transition);
}
.rule-card:hover .rule-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
  transform: scale(1.08);
}
.rule-card h4 {
  font-size: 1rem; font-weight: 800; margin-bottom: 10px;
  color: var(--text-main);
}
.rule-card p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
}

.rules-accept {
  margin-top: 40px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,140,0,0.07);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: var(--radius-md); padding: 16px 24px;
  font-size: 0.875rem; color: var(--text-soft);
}
.rules-accept i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* == FAQ ==============================================─ */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  overflow: hidden;
}
.faq-item::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: linear-gradient(135deg, rgba(255,140,0,0.5), rgba(255,59,0,0.4), rgba(255,140,0,0.5));
  background-size: 200% 200%;
  opacity: 0; z-index: -1;
  transition: opacity 0.4s ease;
  animation: gradPan 4s ease infinite;
}
@keyframes gradPan {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.faq-item:hover::before  { opacity: 0.25; }
.faq-item.active::before { opacity: 0.55; }

.faq-item:hover {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.faq-item.active {
  background: rgba(10,10,14,0.95);
  box-shadow: 0 10px 40px rgba(255,140,0,0.08);
}
.faq-btn {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; gap: 18px;
  background: transparent; border: none; cursor: pointer;
  text-align: left; color: inherit;
}
.faq-number {
  font-size: 1.2rem; font-weight: 900; min-width: 36px;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  transition: all 0.4s;
}
.faq-item.active .faq-number {
  color: var(--primary); -webkit-text-stroke: 0 transparent;
}
.faq-question-text {
  flex: 1; font-size: 1.05rem; font-weight: 700;
  color: var(--text-main); transition: color 0.3s;
}
.faq-item.active .faq-question-text { color: var(--primary); }
.faq-icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: all 0.45s cubic-bezier(0.68,-0.55,0.265,1.55);
  flex-shrink: 0;
}
.faq-item.active .faq-icon-wrap {
  background: var(--primary); border-color: var(--primary);
  color: #000; transform: rotate(135deg);
  box-shadow: 0 0 14px rgba(255,140,0,0.4);
}
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.2,0.8,0.2,1); }
.faq-content-inner {
  padding: 0 28px 26px 82px;
  opacity: 0; transform: translateY(-6px);
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.75;
  transition: all 0.45s ease;
}
.faq-item.active .faq-content { max-height: 360px; }
.faq-item.active .faq-content-inner { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.faq-content-inner strong {
  color: var(--text-main); font-weight: 700;
  background: rgba(255,255,255,0.06); padding: 2px 7px;
  border-radius: 5px; border: 1px solid var(--border);
}

/* == FOOTER ============================================ */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); }
.footer-top { padding: 60px 0 40px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-soft); margin-bottom: 20px; }
.footer-links-group a {
  display: block; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 12px; transition: color 0.25s;
}
.footer-links-group a:hover { color: var(--text-main); }

.contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  margin-bottom: 12px; transition: color 0.25s;
}
.contact-item:hover { color: var(--text-main); }
.contact-item i { color: var(--primary); width: 16px; text-align: center; }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--primary); color: #000;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,140,0,0.35);
}

.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* == RESPONSIVE ======================================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-actions .btn-discord { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-buttons .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .tabs-nav { gap: 4px; }
  .tab-btn { min-width: unset; font-size: 0.75rem; padding: 10px 10px; }
  .tab-btn span { display: none; }
  .rules-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .faq-content-inner { padding-left: 28px; }
}
@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* == SCROLL REVEAL ====================================─ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1; transform: translateY(0);
}
.rule-card:nth-child(1) { transition-delay: 0.05s; }
.rule-card:nth-child(2) { transition-delay: 0.1s; }
.rule-card:nth-child(3) { transition-delay: 0.15s; }
.rule-card:nth-child(4) { transition-delay: 0.2s; }
.rule-card:nth-child(5) { transition-delay: 0.25s; }
.rule-card:nth-child(6) { transition-delay: 0.3s; }

/* == HOW TO START PLAYING ============================== */
.how-to-start { background: var(--bg-main); position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(255,140,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,140,0,0.06);
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,140,0,0.25);
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition);
}
.step-card:hover .step-number {
  color: var(--primary);
  -webkit-text-stroke: 0 transparent;
  text-shadow: 0 0 15px rgba(255,140,0,0.4);
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* == SERVERS =========================================== */
.servers-section { background: var(--bg-card); position: relative; }
.servers-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.server-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  background: var(--bg-main);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.server-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
}
.server-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.1);
}
.server-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.server-badge-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.server-name {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.server-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.server-progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  margin-bottom: 12px;
  overflow: hidden;
}
.server-progress-fill {
  width: 0%;
  height: 100%;
  background: #ef4444;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  animation: fillProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes fillProgress {
  to { width: 0%; }
}
.server-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}


