@font-face {
  font-family: 'Cubic 11';
  src: url('https://cdn.jsdelivr.net/npm/cubic-11@1.0.0/cubic-11.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/npm/cubic-11@1.0.0/cubic-11.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --primary-color: #4ade80;
  --primary-dark: #22c55e;
  --primary-glow: rgba(74, 222, 128, 0.6);
  --secondary-color: #60a5fa;
  --warning-color: #fbbf24;
  --danger-color: #ef4444;
  --bg-dark: #050508;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(74, 222, 128, 0.3);
}

body {
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  background-image: url('/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(96, 165, 250, 0.08) 0%, transparent 40%);
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { 
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(74, 222, 128, 0.3);
  }
  50% { 
    box-shadow: 0 0 35px var(--primary-glow), 0 0 60px rgba(74, 222, 128, 0.5);
  }
}

@keyframes text-glow {
  0%, 100% { 
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(74, 222, 128, 0.5), 0 0 40px rgba(74, 222, 128, 0.3);
  }
  50% { 
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(74, 222, 128, 0.7), 0 0 60px rgba(74, 222, 128, 0.5);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  animation: fade-in-up 0.5s ease-out;
}

.navbar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(18px, 3vw, 24px);
  text-shadow: 0 0 20px var(--primary-glow);
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.02);
  text-shadow: 0 0 30px var(--primary-glow);
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
  transition: all 0.3s ease;
}

.navbar-logo:hover .logo-img {
  box-shadow: 0 0 35px var(--primary-glow);
}

.navbar-auth {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(34, 197, 94, 0.2) 100%);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.4), inset 0 0 20px rgba(74, 222, 128, 0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: var(--danger-color);
  border: 1px solid var(--danger-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.4), inset 0 0 20px rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
  animation: fade-in-up 0.8s ease-out;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(36px, 8vw, 64px);
  color: var(--primary-color);
  text-shadow: 
    0 0 20px var(--primary-glow),
    0 0 40px rgba(74, 222, 128, 0.6),
    0 0 60px rgba(74, 222, 128, 0.4);
  margin-bottom: 40px;
  animation: text-glow 3s ease-in-out infinite;
  line-height: 1.4;
  letter-spacing: 3px;
  text-align: center;
}

.hero p {
  font-size: clamp(20px, 4.5vw, 32px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  max-width: 900px;
  line-height: 2.2;
  letter-spacing: 2px;
  text-align: center;
}

.hero-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 28px 55px;
  font-size: clamp(14px, 3vw, 20px);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 3px;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 
    0 15px 40px rgba(74, 222, 128, 0.2),
    0 0 60px rgba(74, 222, 128, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn:hover::before {
  opacity: 1;
}

.hero-btn:nth-child(1) {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.3);
}

.hero-btn:nth-child(1):hover {
  background: rgba(74, 222, 128, 0.15);
  border-color: var(--primary-color);
  box-shadow: 
    0 15px 40px rgba(74, 222, 128, 0.3),
    0 0 60px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(74, 222, 128, 0.2);
}

.hero-btn:nth-child(2) {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
}

.hero-btn:nth-child(2):hover {
  background: rgba(96, 165, 250, 0.15);
  border-color: var(--secondary-color);
  box-shadow: 
    0 15px 40px rgba(96, 165, 250, 0.3),
    0 0 60px rgba(96, 165, 250, 0.2),
    inset 0 1px 0 rgba(96, 165, 250, 0.2);
}

.hero-btn:nth-child(3) {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.3);
}

.hero-btn:nth-child(3):hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--warning-color);
  box-shadow: 
    0 15px 40px rgba(251, 191, 36, 0.3),
    0 0 60px rgba(251, 191, 36, 0.2),
    inset 0 1px 0 rgba(251, 191, 36, 0.2);
}

.section {
  padding: 120px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--primary-glow);
  text-align: center;
  letter-spacing: 4px;
  animation: fade-in-up 0.6s ease-out;
}

.card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid var(--border-color);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: fade-in-up 0.6s ease-out;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card h3 {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 25px;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.card p {
  color: var(--text-secondary);
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 2.4;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.form-group input {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-size: clamp(14px, 2.5vw, 18px);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.3), inset 0 0 20px rgba(74, 222, 128, 0.05);
}

.login-container, .register-container {
  max-width: 550px;
  margin: 180px auto;
  animation: scale-in 0.5s ease-out;
}

.login-container h2, .register-container h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 4px;
}

.toggle-auth {
  text-align: center;
  margin-top: 30px;
  color: var(--text-secondary);
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1px;
}

.toggle-auth a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.toggle-auth a:hover {
  text-shadow: 0 0 20px var(--primary-glow);
}

.player-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.player-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in-up 0.6s ease-out;
}

.player-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 0 35px rgba(74, 222, 128, 0.2);
}

.player-card .player-name {
  font-weight: bold;
  color: var(--primary-color);
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: 2px;
}

.player-card .player-stats {
  font-size: clamp(12px, 2.5vw, 14px);
  color: var(--text-secondary);
  margin-top: 12px;
  letter-spacing: 1px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.action-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in-up 0.6s ease-out;
}

.action-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.25);
}

.action-card h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: 2px;
}

.action-card p {
  color: var(--text-secondary);
  font-size: clamp(12px, 2.5vw, 16px);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.action-card .btn {
  width: 100%;
}

.chat-container {
  max-width: 1000px;
  margin: 0 auto;
}

.chat-messages {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 30px;
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  animation: fade-in-up 0.6s ease-out;
}

.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.3);
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 222, 128, 0.5);
}

.chat-message {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(74, 222, 128, 0.03);
  border-radius: 16px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.chat-message:hover {
  background: rgba(74, 222, 128, 0.05);
}

.chat-message .message-sender {
  font-weight: bold;
  color: var(--primary-color);
  font-size: clamp(14px, 2.5vw, 18px);
  letter-spacing: 2px;
}

.chat-message .message-content {
  color: var(--text-primary);
  margin-top: 10px;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 2;
  letter-spacing: 1px;
}

.chat-input {
  display: flex;
  gap: 20px;
}

.chat-input input {
  flex: 1;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(14px, 2.5vw, 18px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.3), inset 0 0 20px rgba(74, 222, 128, 0.05);
}

.org-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.org-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 35px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in-up 0.6s ease-out;
}

.org-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 35px rgba(74, 222, 128, 0.2);
}

.org-card h4 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: 2px;
}

.org-card .org-leader {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-secondary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.org-card .org-members {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-secondary);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.org-card .btn {
  margin-top: 12px;
  width: 100%;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.shop-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  animation: fade-in-up 0.6s ease-out;
}

.shop-item .item-name {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: 2px;
}

.shop-item .item-price {
  color: var(--warning-color);
  font-size: clamp(14px, 2.5vw, 16px);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.shop-item .item-seller {
  font-size: clamp(12px, 2.5vw, 14px);
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.command-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 25px;
}

.command-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid var(--border-color);
  animation: fade-in-up 0.6s ease-out;
}

.command-item .command-name {
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(14px, 2.5vw, 18px);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.command-item .command-desc {
  color: var(--text-secondary);
  font-size: clamp(12px, 2.5vw, 16px);
  line-height: 2;
  letter-spacing: 1px;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 25px;
  color: #f87171;
  margin-bottom: 30px;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1px;
}

.success-message {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 16px;
  padding: 25px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.user-info .username {
  font-weight: bold;
  color: var(--primary-color);
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: 2px;
}

.user-info .play-time {
  color: var(--text-secondary);
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1px;
}

.footer {
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 50px 30px;
  text-align: center;
  margin-top: 80px;
  animation: fade-in-up 0.8s ease-out;
}

.footer-text {
  color: #666666;
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(12px, 2.5vw, 16px);
  letter-spacing: 3px;
}

.notification {
  position: fixed;
  top: 120px;
  right: 25px;
  padding: 25px 35px;
  border-radius: 16px;
  font-family: 'Cubic 11', 'Press Start 2P', cursive;
  font-size: clamp(12px, 2.5vw, 16px);
  z-index: 2000;
  animation: slide-in-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  letter-spacing: 1px;
}

.notification.success {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: var(--primary-color);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
}

.notification.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.member-list {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 20px;
  padding-right: 15px;
}

.member-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 1px;
}

.member-item:last-child {
  border-bottom: none;
}

.member-item.leader {
  color: var(--primary-color);
  font-weight: bold;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .navbar-content {
    flex-direction: column;
    gap: 20px;
    padding: 15px 20px;
  }
  
  .hero h1 {
    font-size: clamp(28px, 7vw, 48px);
  }
  
  .hero p {
    font-size: clamp(14px, 3vw, 18px);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 90%;
  }
  
  .hero-btn {
    padding: 25px 40px;
    font-size: clamp(14px, 3vw, 18px);
  }
  
  .section {
    padding: 100px 20px;
  }
  
  .card {
    padding: 30px;
  }
  
  .player-list, .action-grid, .org-list, .shop-items, .command-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .notification {
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .navbar-content {
    padding: 12px 15px;
  }
  
  .navbar-logo {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .logo-img {
    width: 45px;
    height: 45px;
  }
  
  .btn {
    padding: 12px 22px;
    font-size: clamp(12px, 3vw, 14px);
  }
  
  .hero {
    padding-top: 90px;
  }
  
  .hero-content {
    margin-bottom: 80px;
  }
}