/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ef4444, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
  letter-spacing: 2px;
}

/* Futuristic Logo Styles */
.futuristic-logo {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hexagon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  animation: rotateLogo 20s linear infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.logo-inner {
  position: relative;
  width: 85%;
  height: 85%;
  background: #0a0a0a;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.logo-letters {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  z-index: 3;
  position: relative;
}

.logo-circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.logo-circuit-lines span {
  position: absolute;
  background: rgba(239, 68, 68, 0.7);
}

.logo-circuit-lines span:nth-child(1) {
  width: 30%;
  height: 2px;
  top: 30%;
  left: 10%;
  animation: pulseLine 2s infinite alternate;
}

.logo-circuit-lines span:nth-child(2) {
  width: 2px;
  height: 30%;
  top: 50%;
  right: 20%;
  animation: pulseLine 3s infinite alternate-reverse;
}

.logo-circuit-lines span:nth-child(3) {
  width: 25%;
  height: 2px;
  bottom: 25%;
  right: 15%;
  animation: pulseLine 2.5s infinite alternate;
}

.logo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
  filter: blur(8px);
  animation: glowPulse 4s infinite alternate;
  z-index: 1;
}

.logo-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gaming-text {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ef4444, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
  letter-spacing: 2px;
  position: relative;
}

.logo-underline {
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  position: relative;
  animation: underlineExpand 3s ease-in-out infinite;
}

/* Logo Animations */
@keyframes rotateLogo {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes pulseLine {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes underlineExpand {
  0%,
  100% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
}

/* Add a hover effect for the logo */
.nav-logo:hover .logo-hexagon {
  animation: rotateLogo 5s linear infinite;
}

.nav-logo:hover .logo-glow {
  animation: glowPulse 2s infinite alternate;
}

.nav-logo:hover .logo-letters {
  animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
  0% {
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
  }
  100% {
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.8), 0 0 30px rgba(239, 68, 68, 0.4);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ef4444;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Neural Network Background */
#neural-canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ef4444, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 50px rgba(239, 68, 68, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: none;
}

.btn-primary {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ef4444;
  border: 2px solid #ef4444;
}

.btn-secondary:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.btn-vip {
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: #000000;
  font-weight: bold;
}

.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Announcements Section */
.announcements-section {
  padding: 4rem 0;
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.announcement-card {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.announcement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.announcement-card:hover {
  transform: translateY(-5px);
  border-color: #ef4444;
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.card-header h3 {
  color: #ef4444;
  font-size: 1rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.card-content p {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date {
  color: #71717a;
  font-size: 0.8rem;
}

.btn-read-more {
  background: transparent;
  color: #ef4444;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Navigation Icons Section */
.nav-icons-section {
  padding: 4rem 0;
}

.nav-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.nav-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icon {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(63, 63, 70, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 39, 42, 0.9);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-size: 24px;
}

.nav-icon-item:hover .nav-icon {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  transform: translateY(-5px);
  animation: redGlow 1s infinite;
}

.nav-icon-item span {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #ef4444;
  font-weight: bold;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.section-header i {
  font-size: 32px;
  color: #ef4444;
}

/* Server Section */
.server-section {
  padding: 4rem 0;
}

.server-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-item {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  color: #ef4444;
}

.stat-item:hover {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.stat-item span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.server-table {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.server-table table {
  width: 100%;
  border-collapse: collapse;
}

.server-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.server-table tr:last-child td {
  border-bottom: none;
}

.status-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.server-ip {
  color: #ffffff;
  font-weight: 600;
}

.server-name {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.map-name {
  color: #a1a1aa;
}

.player-count {
  color: #ffffff;
  font-weight: 600;
}

.server-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* VIP Section */
.vip-section {
  padding: 4rem 0;
}

.vip-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.vip-circle {
  width: 100px;
  height: 100px;
  border: 3px solid #f59e0b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  font-size: 1.5rem;
  font-weight: bold;
  color: #f59e0b;
  position: relative;
  animation: pulse 2s infinite;
}

.vip-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.vip-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vip-card {
  background: rgba(39, 39, 42, 0.9);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.vip-card.gold::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.vip-card.platinum::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.vip-card.titanium::before {
  background: linear-gradient(90deg, #b91c1c, #7f1d1d);
}

.vip-card.gold {
  border: 2px solid #f59e0b;
}

.vip-card.platinum {
  border: 2px solid #ef4444;
  transform: scale(1.05);
}

.vip-card.titanium {
  border: 2px solid #b91c1c;
}

.vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vip-card.platinum:hover {
  transform: scale(1.05) translateY(-10px);
}

.vip-header {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.vip-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.vip-card.gold .vip-header h3 {
  color: #f59e0b;
}

.vip-card.platinum .vip-header h3 {
  color: #ef4444;
}

.vip-card.titanium .vip-header h3 {
  color: #b91c1c;
}

.popular {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ef4444;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vip-features {
  padding: 0 2rem;
}

.feature {
  padding: 0.5rem 0;
  color: #a1a1aa;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.feature:last-child {
  border-bottom: none;
}

.vip-price {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(63, 63, 70, 0.3);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  display: block;
  margin-bottom: 1rem;
}

.vip-notice {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  padding: 2rem;
}

.notice-header {
  color: #ef4444;
  font-weight: bold;
  margin-bottom: 1rem;
}

.notice-content {
  color: #a1a1aa;
  line-height: 1.6;
}

/* VIP Modal */
.vip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: rgba(39, 39, 42, 0.95);
  border: 2px solid #ef4444;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-content h3 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.modal-content p {
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  position: relative;
  background-color: rgba(10, 10, 10, 0.8);
}

.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.7), transparent);
  animation: circuitPulse 3s infinite alternate;
  width: 200px;
  height: 2px;
}

.circuit-line:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circuit-line:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}

.circuit-line:nth-child(3) {
  top: 60%;
  left: 30%;
  animation-delay: 2s;
}

.circuit-line:nth-child(4) {
  top: 80%;
  right: 25%;
  animation-delay: 0.5s;
}

.circuit-line:nth-child(5) {
  top: 30%;
  left: 60%;
  animation-delay: 1.5s;
}

@keyframes circuitPulse {
  0% {
    opacity: 0.1;
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
  }
  100% {
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  }
}

.team-showcase {
  position: relative;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.5);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(239, 68, 68, 0.2);
  z-index: 1;
}

.team-spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

.team-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.team-member-image-container {
  width: 400px;
  min-width: 400px;
  flex-shrink: 0;
  position: relative;
}

.team-member-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.team-member-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-frame:hover .team-member-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, transparent 100%);
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #ef4444;
  z-index: 2;
}

.top-left {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.top-right {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.frame-scanner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  animation: scanLine 3s linear infinite;
  z-index: 2;
}

@keyframes scanLine {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}

.member-role-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(239, 68, 68, 0.9);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.team-member-info {
  padding: 2rem;
  text-align: center;
}

.member-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.member-bio {
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.member-skills {
  margin-bottom: 2rem;
}

.skills-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.skills-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, transparent);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.skill-tag {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
}

.member-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.team-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

.team-indicators {
  display: flex;
  gap: 0.5rem;
}

.team-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.5);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-indicator.active {
  background: #ef4444;
  transform: scale(1.2);
}

.indicator-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.team-indicator.active .indicator-dot {
  background: #ef4444;
}

.team-grid {
  margin-top: 5rem;
  text-align: center;
}

.team-grid h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #ffffff;
}

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

.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card.active {
  border-color: #ef4444;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.team-card:hover {
  transform: translateY(-10px);
}

.card-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .card-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.team-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 2;
}

.card-name {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.card-role {
  color: #ef4444;
  font-size: 0.9rem;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0) 0%, rgba(239, 68, 68, 0) 50%, rgba(239, 68, 68, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .card-glow {
  opacity: 1;
}

.team-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  z-index: 3;
}

/* Forum Section */
.forum-section {
  padding: 4rem 0;
}

.forum-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.forum-category {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.forum-category:hover {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  transform: translateY(-5px);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ef4444;
  font-size: 24px;
}

.category-info h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.category-info p {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-stats {
  display: flex;
  gap: 1rem;
}

.category-stats span {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Rules Section */
.rules-section {
  padding: 4rem 0;
}

.rules-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.rule-category {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  padding: 2rem;
}

.rule-category h3 {
  color: #ef4444;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ef4444;
}

.rule-category ul {
  list-style: none;
}

.rule-category li {
  color: #a1a1aa;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.rule-category li::before {
  content: "•";
  color: #ef4444;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #ef4444;
}

.contact-item:hover {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.contact-item h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #a1a1aa;
}

.contact-form {
  background: rgba(39, 39, 42, 0.9);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ef4444;
  background: rgba(24, 24, 27, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717a;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #ef4444;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(239, 68, 68, 0.3);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ef4444;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ef4444;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ef4444;
}

.stat-label {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(63, 63, 70, 0.3);
}

.footer-bottom p {
  color: #71717a;
}

/* Particle Effects Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .server-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .server-table {
    overflow-x: auto;
  }

  .vip-packages {
    grid-template-columns: 1fr;
  }

  .vip-card.platinum {
    transform: none;
  }

  .vip-card.platinum:hover {
    transform: translateY(-10px);
  }

  .team-member-info {
    padding: 1rem;
  }

  .member-name {
    font-size: 2rem;
  }

  .team-navigation {
    gap: 1rem;
  }

  .team-content {
    flex-direction: column;
  }

  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .nav-icons-grid {
    grid-template-columns: 1fr;
  }

  .server-stats {
    grid-template-columns: 1fr;
  }

  .announcements-grid {
    grid-template-columns: 1fr;
  }

  .team-indicators {
    display: none;
  }

  .member-skills .skills-list {
    gap: 0.5rem;
  }

  .skill-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .team-cards {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes redGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #18181b;
}

::-webkit-scrollbar-thumb {
  background: #ef4444;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #dc2626;
}

/* Selection */
::selection {
  background: rgba(239, 68, 68, 0.3);
  color: #ffffff;
}
