:root {
  --bg-dark: #0a0e15;
  --bg-darker: #06080c;
  --bg-card: rgba(17, 24, 39, 0.7);
  --accent: #00f5a0;
  --accent-secondary: #00d4ff;
  --accent-purple: #8b5cf6;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 245, 160, 0.2);
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #00f5a0 0%, #00d4ff 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 245, 160, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 245, 160, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
    var(--bg-dark);
  pointer-events: none;
  z-index: -1;
  animation: bgPulse 12s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 21, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo i {
  color: var(--accent);
  font-size: 1.5rem;
}

.logo-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-link i {
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-btn {
  background: var(--gradient-primary);
  color: #000 !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
}

.nav-btn::after {
  display: none;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid var(--border-accent);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 15px var(--accent);
}

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

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.glitch-text {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 50%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.hero-subtitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* IP BOX */
.ip-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px 32px;
  margin-bottom: 48px;
  position: relative;
}

.ip-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ip-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ip-copy-btn {
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ip-copy-btn:hover {
  background: rgba(0, 245, 160, 0.2);
}

.copy-toast {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  text-align: center;
  flex: 1;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(26, 35, 51, 0.9);
}

.stat-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Exo 2', sans-serif;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 245, 160, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 24px 60px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 40px 24px 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-card {
  cursor: pointer;
  position: relative;
}

.feature-card-hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-card:hover .feature-card-hint {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FEATURE MODAL ===== */
.feature-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.feature-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.feature-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s;
  box-shadow: 0 0 60px rgba(0, 245, 160, 0.15), var(--shadow-lg);
}

.feature-modal-overlay.active .feature-modal {
  transform: translateY(0) scale(1);
}

.feature-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.feature-modal-close:hover {
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.4);
  color: #ef4444;
}

.feature-modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-modal-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.feature-modal-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-modal-body ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-modal-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-modal-body ul li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.feature-modal-body ul li span {
  flex: 1;
}

.feature-modal-body ul li strong {
  color: var(--text-primary);
}

.fm-note {
  background: rgba(0, 245, 160, 0.06);
  border: 1px solid rgba(0, 245, 160, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.fm-note i {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== DETAILS ===== */
.details {
  padding: 40px 24px 80px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.detail-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s;
}

.detail-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.detail-item h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== NEWS ===== */
.news-section {
  padding: 40px 24px 80px;
}

.news-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.news-card:hover {
  border-color: var(--border-accent);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 245, 160, 0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.news-tag.patch {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-secondary);
  border-color: rgba(0, 212, 255, 0.2);
}

.news-tag.event {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.2);
}

.news-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.news-delete {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.news-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.news-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.news-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.news-photos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-photos img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid var(--border-light);
}

.news-photos img:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

/* ===== FORMS ===== */
.form-section,
.contacts-section,
.support-section {
  padding: 40px 24px 80px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.form-header i {
  color: var(--accent);
}

.form-row-2,
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 14, 21, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.1);
}

.photo-upload-area {
  border: 2px dashed var(--border-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.photo-upload-area:hover {
  border-color: var(--accent);
  background: rgba(0, 245, 160, 0.05);
}

.photo-upload-area i {
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.photo-upload-area span {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.photo-upload-area small {
  color: var(--accent);
  font-size: 0.8rem;
}

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.photo-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-light);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-item button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.photo-preview-item button:hover {
  background: var(--danger);
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 245, 160, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-message {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger);
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card.discord:hover { border-color: #5865F2; }
.contact-card.telegram:hover { border-color: #2AABEE; }
.contact-card.boosty:hover { border-color: #f4aa00; }

.contact-card.discord i { color: #5865F2; }
.contact-card.telegram i { color: #2AABEE; }
.contact-card.boosty i { color: #f4aa00; }

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 24px;
  z-index: 2000;
  display: none;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.admin-panel.open {
  display: block;
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.admin-panel-header h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-panel-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}

.admin-panel-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.admin-tab {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-tab:hover,
.admin-tab.active {
  background: var(--gradient-purple);
  color: white;
  border-color: transparent;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.admin-tab-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat-edit-item {
  padding: 16px;
  background: rgba(10, 14, 21, 0.5);
  border-radius: 12px;
}

.stat-edit-item label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stat-edit-item input {
  width: 100%;
  padding: 8px 12px;
  background: rgba(10, 14, 21, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.news-manage-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.news-manage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(10, 14, 21, 0.5);
  border-radius: 12px;
}

.news-manage-item button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.news-manage-item button:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* ===== ADMIN FAB ===== */
.admin-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-purple);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  transition: all 0.3s;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--danger);
  transform: rotate(90deg);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 32px 24px;
  background: rgba(10, 14, 21, 0.8);
  backdrop-filter: blur(20px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 21, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border-light);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .stats-grid {
    flex-wrap: wrap;
  }
  
  .stat-card {
    min-width: 140px;
  }
  
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .admin-panel {
    width: 95%;
    padding: 20px;
  }
  
  .admin-tabs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    letter-spacing: 8px;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .ip-box {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}