/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Font Imports */
@font-face {
  font-family: 'Satan Gothic';
  src: url('https://fonts.cdnfonts.com/css/satan-gothic') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cyberpunk';
  src: url('https://fonts.cdnfonts.com/css/cyberpunk') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Root Variables (Aligned with Landing Page) */
:root {
  --primary: #ff3a3a;
  --primary-dark: #d92626;
  --primary-light: #ff6b6b;
  --secondary: #990000;
  --accent: #00cc66;
  --danger: #ff1a1a;
  --purple: #a855f7;
  --text-primary: #f8fafc;
  --text-secondary: #777777;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-panel: rgba(30, 30, 30, 0.7);
  --border-color: rgba(255, 58, 58, 0.2);
  --success: #00cc66;
  --warning: #ffcc00;
  --info: #0099ff;
  --glow-effect: 0 0 20px rgba(255, 58, 58, 0.3);
  --text-glow: 0 0 10px rgba(255, 58, 58, 0.5);
}

/* Starry Background */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.star {
  position: absolute;
  background-color: #f8fafc;
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--opacity); transform: scale(1); }
}

/* Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--danger);
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--purple);
  top: 60%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

/* Body Styles */
body {
  font-family: 'Satan Gothic', 'Cyberpunk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-primary);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 58, 58, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 58, 0.08) 0%, transparent 30%);
  z-index: -1;
}

/* Keyframe Animations */
@keyframes bgPulse {
  0% { background-position: 10% 20%, 90% 80%; }
  50% { background-position: 15% 25%, 85% 75%; }
  100% { background-position: 10% 30%, 90% 70%; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 58, 58, 0); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 58, 58, 0.3); }
}

@keyframes textGlow {
  from { text-shadow: 0 0 10px rgba(255, 58, 58, 0.3); }
  to { text-shadow: 0 0 20px rgba(255, 58, 58, 0.6); }
}

@keyframes fade-bottom {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 58, 58, 0); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 58, 58, 0.3); }
}

@keyframes textGlow {
  from { text-shadow: 0 0 10px rgba(255, 58, 58, 0.3); }
  to { text-shadow: 0 0 20px rgba(255, 58, 58, 0.6); }
}

@keyframes fade-bottom {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fade-left {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.9);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.sidebar:hover {
  width: 220px;
  align-items: flex-start;
  padding-left: 20px;
}

.sidebar:hover .logo {
  transform: translateY(-2px);
  margin-left: 0;
}

.sidebar:hover .nav-item span {
  display: inline;
  margin-left: 15px;
  animation: fadeIn 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  animation: textGlow 3s infinite alternate;
}

.logo i {
  color: var(--primary);
  text-shadow: var(--text-glow);
}

.nav-item {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}

.nav-item span {
  display: none;
  font-size: 16px;
  white-space: nowrap;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 58, 58, 0.15);
  color: var(--primary);
}

.nav-item:hover::before,
.nav-item.active::before {
  transform: scaleY(1);
}

.nav-item i {
  min-width:  ts: center;
  font-size: 20px;
}

/* Main Content Area */
.main-content {
  margin-left: 80px;
  min-height: 100vh;
  background-color: transparent;
  animation: fadeIn 0.5s ease;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-left h1 {
  font-weights: bold;
  margin-bottom: 5px;
  background: linear-gradient(to right, var(--primary), var(--danger));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: textGlow 3s infinite alternate;
}

.header-left p {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 16px;
  position: relative;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-avatar:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-effect);
}

.user-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 200px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 950;
}

.user-info:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

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

.dropdown-item:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
}

.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 58, 58, 0.1), transparent);
  z-index: 0;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-effect);
}

.stat-card h3 {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.stat-card .stat-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  opacity: 0.2;
  color: var(--primary);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  opacity: 0.5;
  transform: scale(1.1);
}

/* Panel Container */
.panel-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 25px;
  padding: 30px;
  min-height: calc(100vh - 100px);
}

.attack-form-section,
.ongoing-attacks-section {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
  transition: all 0.3s ease;
  animation: fadeIn 0.7s ease;
}

.ongoing-attacks-section {
  max-height: 80vh;
  overflow-y: auto;
}

.attack-form-section:hover,
.ongoing-attacks-section:hover {
  box-shadow: var(--glow-effect);
}

/* Form Elements */
.form-section {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.form-section:hover {
  background: rgba(40, 40, 40, 0.8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Satan Gothic', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-effect);
  background: rgba(40, 40, 40, 0.8);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--danger));
  z-index: -1;
  transition: all 0.3s ease;
}

.btn:hover::before {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.btn-primary {
  color: #000000;
  background: transparent;
}

.btn-primary:hover {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--glow-effect);
}

.btn-secondary {
  background: var(--bg-panel);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(40, 40, 40, 0.8);
  transform: translateY(-2px);
  box-shadow: var(--glow-effect);
}

.launch-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: linear-gradient(to right, var(--primary), var(--danger));
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.launch-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  transition: all 0.5s ease;
}

.launch-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-effect);
}

.launch-btn:hover::after {
  left: 100%;
}

/* Tabs */
.layer-tabs {
  display: flex;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
}

.layer-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.layer-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.layer-tab.active {
  color: var(--primary);
  background: rgba(255, 58, 58, 0.15);
}

.layer-tab.active::after {
  width: 80%;
}

/* Method Dropdown */
.method-dropdown {
  position: relative;
  z-index: 10;
}

.method-select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Satan Gothic', sans-serif;
}

.method-select:hover {
  border-color: var(--primary);
  background: rgba(40, 40, 40, 0.8);
}

.method-select i {
  transition: transform 0.3s ease;
}

.method-dropdown.open .method-select i {
  transform: rotate(180deg);
}

.method-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.method-dropdown.open .method-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.method-category {
  padding: 10px 15px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  background: rgba(26, 26, 26, 0.9);
  letter-spacing: 1px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.method-item {
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

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

.method-item:hover {
  background: rgba(255, 58, 58, 0.15);
}

.method-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.method-name {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: bold;
}

.method-desc {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.vip-badge {
  padding: 3px 8px;
  background: var(--primary);
  color: #000000;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Attack Item */
.attack-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease;
}

.attack-item:hover {
  background: rgba(40, 40, 40, 0.8);
  transform: translateX(5px);
  box-shadow: var(--glow-effect);
}

.attack-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.attack-target {
  font-weight: bold;
  color: var(--primary);
}

.attack-method {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.attack-stats {
  display: flex;
  gap: 15px;
}

.attack-stat {
  font-size: 12px;
  color: var(--text-secondary);
}

.attack-stat strong {
  color: var(--text-primary);
}

.progress-bar {
  height: 4px;
  background: rgba(51, 0, 0, 0.5);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--danger));
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* News Section */
.news-section {
  padding: 30px;
}

.news-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  animation: fadeIn 0.7s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-effect);
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  animation: textGlow 3s infinite alternate;
}

.news-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.news-date {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 30px;
}

.plan-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--danger));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-effect);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card.recommended {
  border-color: var(--primary);
  box-shadow: var(--glow-effect);
}

.plan-card.recommended::after {
  content: "RECOMMENDED";
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary);
  color: #000000;
  padding: 3px 30px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.plan-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.plan-price {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.plan-price .old-price {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-right: 10px;
  opacity: 0.7;
}

.plan-period {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.plan-features {
  list-style: none;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.plan-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px dashed var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: "?";
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
}

.plan-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, var(--primary), var(--danger));
  color: #000000;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-effect);
}

/* Auth Container */
.auth-container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.auth-left {
  background: linear-gradient(135deg, var(--bg-darker), #111111);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 58, 58, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 58, 0.1) 0%, transparent 30%);
  animation: bgPulse 15s infinite alternate;
}

.auth-logo {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
  animation: textGlow 3s infinite alternate;
  z-index: 1;
}

.auth-slogan {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.6;
  z-index: 1;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  z-index: 1;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.auth-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 58, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.auth-feature-text h3 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 5px;
}

.auth-feature-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.auth-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background: var(--bg-dark);
  position: relative;
}

.auth-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 58, 58, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 58, 0.08) 0%, transparent 30%);
  animation: bgPulse 20s infinite alternate;
}

.auth-form {
  width: 100%;
  max-width: 400px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 1;
  animation: fadeIn 0.7s ease;
}

.auth-form h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  background: linear-gradient(to right, var(--primary), var(--danger));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 3s infinite alternate;
}

.auth-form p {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Satan Gothic', sans-serif;
  transition: all 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-effect);
  background: rgba(40, 40, 40, 0.8);
}

.auth-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-bottom: 20px;
}

.auth-alt {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 20px;
}

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

.auth-alt a:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid transparent;
  animation: fadeIn 0.5s ease;
}

.alert i {
  font-size: 20px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.alert-message {
  font-size: 13px;
  line-height: 1.5;
}

.alert-info {
  background: rgba(0, 60, 120, 0.2);
  border: 1px solid rgba(0, 120, 255, 0.3);
  color: #7fbfff;
  border-left-color: var(--info);
}

.alert-warning {
  background: rgba(120, 60, 0, 0.2);
  border: 1px solid rgba(255, 150, 0, 0.3);
  color: #ffcc66;
  border-left-color: var(--warning);
}

.alert-success {
  background: rgba(0, 80, 40, 0.2);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #66ff99;
  border-left-color: var(--success);
}

.alert-error {
  background: rgba(120, 0, 0, 0.2);
  border: 1px solid rgba(255, 50, 50, 0.3);
  color: #ff6666;
  border-left-color: var(--danger);
}

/* Landing Hero */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-darker), #111111);
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 58, 58, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 58, 0.1) 0%, transparent 30%);
  animation: bgPulse 15s infinite alternate;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  animation: fadeIn 1s ease;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary), var(--danger));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: textGlow 3s infinite alternate;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.testimonials {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  z-index: 1;
  animation: fadeIn 1.5s ease;
}

.testimonial {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-effect);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000000;
}

.testimonial-name {
  font-weight: bold;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 0 40px;
  color: var(--text-secondary);
  font-size: 12px;
  border-top: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: var(--glow-effect);
}

/* Table */
.table-container {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.7s ease;
}

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

.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.table th {
  background: rgba(40, 40, 40, 0.8);
  color: var(--text-secondary);
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
}

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

.table tr:hover td {
  background: rgba(255, 58, 58, 0.05);
}

.table td {
  color: var(--text-primary);
}

.table .status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.table .status-active {
  background: rgba(0, 204, 102, 0.2);
  color: var(--accent);
}

.table .status-inactive {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.table .status-pending {
  background: rgba(255, 204, 0, 0.2);
  color: var(--warning);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .panel-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ongoing-attacks-section {
    max-height: none;
  }

  .testimonials {
    right: 50px;
    width: 250px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-left {
    padding: 40px;
  }

  .auth-right {
    padding: 40px;
  }

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

@media (max-width: 768px) {
  .sidebar {
    width: 70px;
  }

  .main-content {
    margin-left: 70px;
  }

  .header {
    padding: 15px 25px;
  }

  .header-left h1 {
    font-size: 24px;
  }

  .panel-container {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .testimonials {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }

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

@media (max-width: 576px) {
  .sidebar {
    width: 60px;
    padding: 15px 0;
  }

  .main-content {
    margin-left: 60px;
  }

  .header {
    padding: 12px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .stats-grid {
    padding: 15px;
    gap: 15px;
  }

  .panel-container {
    padding: 15px;
  }

  .auth-form {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-panel);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}