* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  direction: rtl;
}

/* General helper to truly hide elements that use the `hidden` class
   This prevents invisible overlays (opacity:0) from blocking clicks. */
.hidden {
  display: none !important;
}


.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.postimg.cc/x1Yzt756/discord_wr_fivem.png') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.loading-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo-container {
  position: relative;
  margin-bottom: 40px;
}

.logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #dc2626;
  animation: logoFloat 3s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(220, 38, 38, 0.8);
  z-index: 3;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
  animation: pulse 2s infinite;
  z-index: 2;
}

.logo-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.45);
  z-index: 5; 
  animation: pulse 3.5s ease-in-out infinite;
}


.logo-particles::before,
.logo-particles::after {
  .logo-particles { display: none; }
  .floating-particles { display: none; }
  margin-bottom: 50px;
  letter-spacing: 4px;
  animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-bar-container {
  width: 500px;
  margin-bottom: 25px;
  position: relative;
}

.loading-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.loading-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 2s infinite;
}

.loading-percentage {
  font-size: 1.4rem;
  font-weight: 700;
  color: #dc2626;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.loading-text {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 25px;
  animation: textPulse 1.5s ease-in-out infinite;
}


.welcome-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.welcome-text {
  font-size: 4rem;
  font-weight: 900;
  color: #dc2626;
  text-shadow: 0 0 40px rgba(220, 38, 38, 0.9);
  animation: welcomeAnimation 4s ease-in-out;
}

.welcome-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.main-website {
  min-height: 100vh;
  background: url('https://i.postimg.cc/x1Yzt756/discord_wr_fivem.png') center/cover;
  position: relative;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(220, 38, 38, 0.1) 0%, transparent 50%, rgba(220, 38, 38, 0.1) 100%);
  animation: bgMove 10s ease-in-out infinite;
}


.header {
  position: relative;
  z-index: 10;
  padding: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(20px);
  border-bottom: 3px solid #dc2626;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-container-header {
  position: relative;
  display: flex;
  align-items: center;
}

.header-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: none; 
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
  transition: all 0.5s ease;
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}



.header-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(220, 38, 38, 1);
}

.header-title {
  font-size: 4rem;
  font-weight: 900;
  color: #dc2626;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  margin: 0;
  letter-spacing: 4px;
  animation: textGlow 3s ease-in-out infinite alternate;
}

.red-line {
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  animation: lineGlow 2s ease-in-out infinite alternate;
}


.navigation {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.nav-btn {
  position: relative;
  padding: 20px 40px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-btn:hover .btn-glow {
  left: 100%;
}

/* red dot click effect on buttons */
button {
  position: relative;
  overflow: hidden;
}

.click-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff4c4c; /* brighter red */
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,76,76,0.8);
  transform: translate(-50%, -50%) scale(0);
  animation: clickDot 0.5s forwards;
  pointer-events: none;
}

@keyframes clickDot {
  to {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.7);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.nav-btn.active {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
  transform: scale(1.05);
}

.nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
}


.main-content {
  position: relative;
  z-index: 5;
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.content-section {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #dc2626;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  letter-spacing: 2px;
  animation: titleGlow 2s ease-in-out infinite alternate;
}


.definition-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.description-box {
  background: rgba(0, 0, 0, 0.9);
  border: 3px solid #dc2626;
  border-radius: 20px;
  padding: 40px;
  font-size: 1.2rem;
  line-height: 2;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.description-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  animation: slideGlow 3s infinite;
}

.team-members {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.member {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.05));
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #dc2626;
  transition: all 0.6s ease;
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.member:nth-child(1) { animation-delay: 0.2s; }
.member:nth-child(2) { animation-delay: 0.4s; }
.member:nth-child(3) { animation-delay: 0.6s; }

.member::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
  transition: left 0.8s ease;
}

.member:hover::before {
  left: 100%;
}

.member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.6);
}

.member.chief {
  border-color: #fbbf24;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.1));
}

.member.chief:hover {
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.6);
}

.member.vice {
  border-color: #ef4444;
}

.member.advisor {
  border-color: #60a5fa;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.05));
}

.member.advisor:hover {
  box-shadow: 0 20px 50px rgba(96, 165, 250, 0.6);
}

.member-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #dc2626;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #dc2626, transparent, #dc2626);
  animation: rotate 3s linear infinite;
  z-index: -1;
}

.member.chief .member-avatar {
  border-color: #fbbf24;
}

.member.chief .avatar-glow {
  background: linear-gradient(45deg, #fbbf24, transparent, #fbbf24);
}

.member.advisor .member-avatar {
  border-color: #60a5fa;
}

.member.advisor .avatar-glow {
  background: linear-gradient(45deg, #60a5fa, transparent, #60a5fa);
}

.member:hover .member-avatar {
  transform: scale(1.1) rotate(5deg);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.member:hover .member-avatar img {
  transform: scale(1.1);
}

.member-info {
  flex: 1;
}

.member-rank {
  font-size: 1rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.member.vice .member-rank {
  color: #ef4444;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.member.advisor .member-rank {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
}

.member-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}


.branches-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.branch {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(0, 0, 0, 0.9);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #dc2626;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

.branch:nth-child(1) { animation-delay: 0.2s; }
.branch:nth-child(2) { animation-delay: 0.4s; }
.branch:nth-child(3) { animation-delay: 0.6s; }

.branch:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.4);
}

.branch-icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #dc2626;
  overflow: hidden;
}

.icon-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  background: linear-gradient(45deg, #dc2626, transparent, #dc2626);
  animation: rotate 4s linear infinite;
  z-index: -1;
}

.branch-icon.gold {
  border-color: #fbbf24;
}

.branch-icon.gold .icon-glow {
  background: linear-gradient(45deg, #fbbf24, transparent, #fbbf24);
}

.branch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.5s ease;
}

.branch:hover .branch-img {
  transform: scale(1.1);
}

.branch-info {
  flex: 1;
}

.branch-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.branch-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, transparent);
  margin-bottom: 25px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.join-btn {
  position: relative;
  padding: 15px 35px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-particles {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}






.join-btn.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.join-btn.gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.join-btn.black {
  background: linear-gradient(135deg, #374151, #111827);
  color: #fff;
  box-shadow: 0 8px 25px rgba(55, 65, 81, 0.4);
}

.join-btn.black:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(55, 65, 81, 0.6);
}

.join-btn.red {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.join-btn.red:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}


.stats-panel {
  background: rgba(0, 0, 0, 0.95);
  border: 3px solid #dc2626;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.stats-panel::before {

  display: none;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 40px;
  text-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
  letter-spacing: 2px;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.stat-item.servers .stat-value {
  color: #22c55e; /* green */
}

.stat-item.online .stat-value {
  color: #3b82f6; /* blue for example */
}

.stats-separator {
  width: 80%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 20px auto;
  border: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.stat-item {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(34, 197, 94, 0.2));
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #dc2626;
  transition: all 0.5s ease;
  overflow: hidden;
}

.stat-glow {
  
  display: none;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.stat-label {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: #22c55e;
  text-shadow: 0 0 25px rgba(34, 197, 94, 0.8);
  animation: countUp 2s ease-out;
}

.social-section {
  
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid rgba(220, 38, 38, 0.5);
}

.social-item {
  
  padding: 10px 0;
  border-top: 1px solid rgba(220, 38, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-glow {
  display: none; 
}

.social-item.tiktok {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 10px; 
  padding: 6px 0;
  background: none;
  border: none;
}

.social-item.discord {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; 
  padding: 6px 0;
  background: none;
  border: none;
}

.social-item:hover {
  transform: none;
  box-shadow: none;
}

.social-item.developer:hover {
  
  border-color: #dc2626;
  background: transparent;
  box-shadow: none;
}

.social-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: none;
}


.nax-img {
  width: 80px;
  height: 80px;
  display: block;
  margin-top: 6px;
  align-self: flex-start; 
}

.social-item a {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #dc2626;
  color: #fbbf24;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
}

.social-item a:hover {
  background: rgba(220,38,38,0.08);
}

.social-item:hover .social-icon {
  transform: none;
  filter: none;
}

.social-item a {
  display: block;
  width: 70%;
  margin: 10px auto 0;
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #dc2626;
  color: #fbbf24;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
}

.social-item a:hover {
  background: rgba(220,38,38,0.08);
}

.developer-text {
  font-size: 1rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}


.developer-card {
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #dc2626;
  background: rgba(220, 38, 38, 0.04);
  width: 70%;
  margin: 8px auto 0;
  text-align: center;
}


.social-item.developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 0; 
}

.developer-text {
  margin: 0;
  color: #fbbf24;
  font-weight: 700;
}

.rights-text {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #9ca3af;
  text-align: center;
  font-style: italic;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


.rules-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.rule-btn {
  position: relative;
  padding: 20px 25px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-align: center;
}

.rule-btn .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.rule-btn:hover .btn-glow {
  left: 100%;
}

.rule-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

.rule-btn.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
  transform: scale(1.05);
}

.rule-content {
  max-width: 1000px;
  margin: 0 auto;
}

.rule-box {
  background: rgba(220, 38, 38, 0.15);
  border: 3px solid #dc2626;
  border-radius: 15px;
  padding: 40px;
  animation: slideIn 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
}

.rule-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  animation: slideGlow 3s infinite;
}

.rule-header {
  font-size: 2.2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.rule-date {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 25px;
}

.rule-text {
  font-size: 1.1rem;
  line-height: 2;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.rule-box.hidden {
  display: none !important;
}


@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit {
  from { transform: translateX(-50%) rotate(0deg) translateX(125px) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg) translateX(125px) rotate(-360deg); }
}

@keyframes floatUp {
  0% { 
    bottom: -10px; 
    opacity: 1; 
    transform: translateX(0px);
  }
  100% { 
    bottom: 100vh; 
    opacity: 0; 
    transform: translateX(100px);
  }
}

@keyframes textGlow {
  0% { text-shadow: 0 0 30px rgba(220, 38, 38, 0.8); }
  100% { text-shadow: 0 0 50px rgba(220, 38, 38, 1), 0 0 80px rgba(220, 38, 38, 0.6); }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes welcomeAnimation {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes bgMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
  from { 
    opacity: 0; 
    transform: translateY(50px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slideInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-50px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes slideGlow {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

@keyframes lineGlow {
  0% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.6); }
  100% { box-shadow: 0 0 40px rgba(220, 38, 38, 1), 0 0 60px rgba(220, 38, 38, 0.4); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(220, 38, 38, 0.8); }
  100% { text-shadow: 0 0 50px rgba(220, 38, 38, 1), 0 0 80px rgba(220, 38, 38, 0.6); }
}

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateX(-30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes countUp {
  from { 
    opacity: 0; 
    transform: scale(0.5); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}


@media (max-width: 768px) {
  .header-content {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .header-logo {
    width: 120px;
    height: 120px;
  }
  
  .header-title {
    font-size: 2.5rem;
  }
  
  .navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .content-section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .member {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .branch {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .stats-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .social-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rules-menu {
    grid-template-columns: 1fr;
  }
  
  .server-name {
    font-size: 2.5rem;
  }
  
  .loading-bar-container {
    width: 90%;
  }
}