/* CSS Variables - Light Theme (Default) */
:root[data-theme="light"],
:root:not([data-theme]) {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #E2E8F0;
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-contrast: #FFFFFF;
  --link: #2563EB;
  --link-hover: #1D4ED8;
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;
}

/* CSS Variables - Dark Theme */
:root[data-theme="dark"] {
  --bg: #0B1220;
  --surface: #0F172A;
  --surface-2: #111C33;
  --text: #E5E7EB;
  --text-muted: #94A3B8;
  --border: #23304A;
  --primary: #3B82F6;
  --primary-hover: #60A5FA;
  --primary-contrast: #0B1220;
  --link: #60A5FA;
  --link-hover: #93C5FD;
  --success: #22C55E;
  --warning: #FBBF24;
  --danger: #EF4444;
}

html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}
/* Modern Clean Navigation Bar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  padding: 16px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

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

header h1 {
  color: var(--text);
  font-weight: 700;
  transition: color 0.3s ease;
}

header img.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

header img.logo:hover {
  opacity: 0.8;
}

footer img.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Logo theme switching - handled by JavaScript */

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
}

nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}

nav a.active {
  color: var(--text);
  font-weight: 500;
  background: var(--surface-2);
}

.client-login-btn {
  background: var(--primary) !important;
  color: #FFFFFF !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-left: 16px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.client-login-btn:hover {
  background: var(--primary-hover) !important;
  color: #FFFFFF !important;
  transform: none !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
}

/* Dark Mode Toggle Button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  line-height: 1;
}

.theme-toggle:hover {
  background: var(--surface-2);
  border-color: var(--border);
}

.theme-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.theme-toggle:active {
  transform: scale(0.95);
}
/* Modern Dark Hero Section */
.hero {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Blurred bubbles and shapes */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Large blue bubble bottom right */
    radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    /* Medium blue bubble top left */
    radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 45%),
    /* Small blue bubble center */
    radial-gradient(circle at 50% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    /* Diagonal blue line effect */
    linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.08) 25%, transparent 50%),
    /* Vertical accent line */
    linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.06) 30%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.9;
  }
  66% {
    transform: translateY(10px) translateX(-10px);
    opacity: 0.95;
  }
}

/* Additional decorative elements using a pseudo-element on hero-content */
.hero-content::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: floatBubble 25s ease-in-out infinite;
}

.hero-content::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  animation: floatBubble 30s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Home page specific hero layout */
.hero-home .hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-home .hero-content {
  text-align: left;
  max-width: none;
  margin: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(15, 23, 42, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-home h2 {
  text-align: left;
}

.hero-price {
  display: block;
  color: #60a5fa;
  font-size: 3rem;
  margin-top: 8px;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-home p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-home .hero-buttons {
  justify-content: flex-start;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn.primary {
  background: #60a5fa;
  color: white;
  box-shadow: 0 4px 14px rgba(96, 165, 250, 0.3);
}

.hero-btn.primary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
}

.hero-btn.secondary {
  background: #e2e8f0;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary:hover {
  background: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-home .hero-features {
  justify-content: flex-start;
}

.hero-feature {
  text-align: center;
}

.hero-feature-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-feature-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Terminal Window Styles */
.hero-terminal {
  position: relative;
  z-index: 1;
}

.terminal-window {
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
  background: #0f172a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-btn-close {
  background: #ef4444;
}

.terminal-btn-minimize {
  background: #f59e0b;
}

.terminal-btn-maximize {
  background: #10b981;
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.terminal-lock {
  font-size: 0.75rem;
}

.terminal-body {
  padding: 20px;
  min-height: 200px;
  background: #0f172a;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  min-height: 1.6em;
}

.terminal-prompt {
  color: #60a5fa;
  font-weight: 600;
  flex-shrink: 0;
}

.terminal-text {
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
}

.terminal-arrow {
  color: #60a5fa;
}

.terminal-command {
  color: rgba(255, 255, 255, 0.9);
}

.terminal-cursor {
  color: #60a5fa;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.terminal-footer {
  background: #0f172a;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-status-icon {
  font-size: 0.875rem;
}

.terminal-encoding {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* cPanel Preview Styles */
.hero-cpanel {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cpanel-preview {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.cpanel-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.cpanel-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 600;
}

.cpanel-icon {
  font-size: 1.2rem;
}

.cpanel-user {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.user-icon {
  font-size: 0.9rem;
}

.cpanel-body {
  display: flex;
  height: 380px;
  background: #1e293b;
}

.cpanel-sidebar {
  width: 140px;
  background: #0f172a;
  border-right: 2px solid rgba(59, 130, 246, 0.2);
  padding: 12px 0;
  overflow-y: visible;
}

.sidebar-section {
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 16px 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.sidebar-item:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #e2e8f0;
}

.sidebar-item.active {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-weight: 500;
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3b82f6;
}

.item-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.status-badge {
  margin-left: auto;
  font-size: 0.7rem;
  background: #10b981;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.cpanel-content {
  flex: 1;
  padding: 16px;
  overflow-y: visible;
  background: #1e293b;
  position: relative;
}

.content-panel {
  display: none;
}

.content-panel.active {
  display: block;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.content-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.content-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 6px 14px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #0f172a;
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.file-item:hover {
  background: #1e293b;
  border-color: rgba(59, 130, 246, 0.4);
}

.file-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.file-name {
  flex: 1;
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 500;
}

.file-size {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.6);
  min-width: 60px;
  text-align: right;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.file-date {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.5);
  min-width: 80px;
  text-align: right;
}

.content-stats {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 500;
}

.stat-bar {
  height: 8px;
  background: #0f172a;
  border-radius: 4px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  transition: width 1s ease;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.stat-value {
  font-size: 0.75rem;
  color: #e2e8f0;
  font-weight: 600;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* Email List Styles */
.email-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.email-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #0f172a;
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.email-item:hover {
  background: #1e293b;
  border-color: rgba(59, 130, 246, 0.4);
}

.email-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.email-icon {
  font-size: 1.2rem;
}

.email-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-address {
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 500;
}

.email-quota {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.email-actions {
  display: flex;
  gap: 8px;
}

.email-btn {
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

/* Database List Styles */
.database-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.database-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #0f172a;
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.database-item:hover {
  background: #1e293b;
  border-color: rgba(59, 130, 246, 0.4);
}

.database-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.database-icon {
  font-size: 1.2rem;
}

.database-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.database-name {
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 500;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.database-size {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.database-actions {
  display: flex;
  gap: 8px;
}

/* SSL Status Styles */
.ssl-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ssl-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #0f172a;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.ssl-card.active {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}

.ssl-icon {
  font-size: 1.5rem;
}

.ssl-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ssl-domain {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

.ssl-status-text {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
}

.ssl-badge {
  padding: 4px 10px;
  background: #10b981;
  color: white;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Server Defense Game Styles */
.hero-game {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.game-stats {
  display: flex;
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #60a5fa;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

#uptime {
  color: #10b981;
}

.game-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.game-btn:active {
  transform: translateY(0);
}

.game-board {
  position: relative;
  min-height: 320px;
  background: #0f172a;
  border-radius: 12px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servers-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
}

.server-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-radius: 8px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  min-width: 80px;
  flex: 1;
  max-width: 100px;
  transition: all 0.3s ease;
}

.server-node.online {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.server-node.offline {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
  opacity: 0.6;
}

.server-icon {
  font-size: 2rem;
}

.server-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.server-node.offline .server-status {
  color: #ef4444;
}

.attack-zone {
  position: relative;
  height: 220px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  border: 1px dashed rgba(59, 130, 246, 0.3);
  overflow: hidden;
}

.attack {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 1s ease-in-out infinite;
}

.attack:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
}

.attack.defended {
  animation: explode 0.3s ease-out forwards;
}

@keyframes explode {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.defense-effect {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #10b981;
  border-radius: 50%;
  pointer-events: none;
  animation: defensePulse 0.5s ease-out forwards;
}

@keyframes defensePulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.game-footer {
  margin-top: 12px;
  text-align: center;
}

.game-instructions {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.8rem;
}

.game-over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15, 23, 42, 0.98);
  padding: 40px 50px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(59, 130, 246, 0.5);
  z-index: 1000;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.game-over h3 {
  color: #e2e8f0;
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.game-over p {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.game-over p:last-of-type {
  margin-bottom: 30px;
}

.game-over .game-btn {
  margin-top: 10px;
  width: 100%;
}

.cpanel-footer {
  background: #0f172a;
  padding: 12px 20px;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
  display: flex;
  justify-content: center;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 500;
}

.footer-info span:nth-child(even) {
  color: rgba(226, 232, 240, 0.4);
}

/* VPS Dashboard Styles */
.hero-dashboard {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vps-dashboard {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.dashboard-header {
  background: #0f172a;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
}

.dashboard-icon {
  font-size: 1.2rem;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
}

.dashboard-status-bar {
  background: rgba(15, 23, 42, 0.6);
  padding: 12px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  gap: 16px;
}

.status-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.status-bar-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-bar-value {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
}

.status-bar-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 2px;
}

.status-bar-indicator.status-up {
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.status-bar-icon {
  font-size: 0.85rem;
  margin-top: 2px;
  opacity: 0.7;
}

.dashboard-instances {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-instances::-webkit-scrollbar {
  width: 6px;
}

.dashboard-instances::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 3px;
}

.dashboard-instances::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 3px;
}

.dashboard-instances::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.7);
}

.vps-instance {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vps-instance:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

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

.instance-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 10px;
  padding: 4px 8px;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 4px;
  width: fit-content;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.instance-location .location-icon {
  font-size: 0.75rem;
  opacity: 0.8;
}

.instance-name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.instance-icon {
  font-size: 1rem;
}

.instance-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.instance-status.online {
  color: #10b981;
}

.instance-status .status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.instance-resources {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-label {
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.6);
  font-weight: 500;
  min-width: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resource-bar {
  flex: 1;
  height: 6px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.resource-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
  position: relative;
}

.cpu-fill {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.ram-fill {
  background: linear-gradient(90deg, #10b981, #34d399);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.storage-fill {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.resource-value {
  font-size: 0.7rem;
  color: #e2e8f0;
  font-weight: 600;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  min-width: 50px;
  text-align: right;
}

.instance-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.instance-specs span:nth-child(even) {
  color: rgba(226, 232, 240, 0.4);
}

/* Support Ticket System */
.hero-tickets {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ticket-system {
  width: 100%;
  max-width: 550px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.ticket-header {
  background: #0f172a;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.ticket-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
}

.ticket-icon {
  font-size: 1.2rem;
}

.ticket-header-right {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
}

.ticket-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.ticket-list::-webkit-scrollbar {
  width: 6px;
}

.ticket-list::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 3px;
}

.ticket-list::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 3px;
}

.ticket-list::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.7);
}

.ticket-item {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.ticket-item:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.ticket-priority {
  width: 4px;
  height: 100%;
  min-height: 50px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ticket-priority.priority-high {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.ticket-priority.priority-medium {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.ticket-priority.priority-low {
  background: linear-gradient(180deg, #10b981, #059669);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.ticket-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-subject {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.ticket-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
}

.ticket-category {
  color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.ticket-time {
  color: rgba(148, 163, 184, 0.6);
}

.ticket-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.ticket-status.status-open {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ticket-status.status-progress {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.ticket-status.status-resolved {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticket-footer {
  background: rgba(15, 23, 42, 0.6);
  padding: 12px 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.ticket-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.8);
}

.ticket-stats strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* Server Rack Visualization Styles */
.hero-rack {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.server-rack {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.rack-frame {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  position: relative;
}

.rack-header {
  background: #0f172a;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.rack-status-panel {
  background: #1e293b;
  padding: 12px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  flex-wrap: wrap;
}

.status-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 60px;
}

.status-label {
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-value {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.temp-value {
  color: #60a5fa;
}

.status-text {
  color: #10b981;
}

.network-status {
  color: #10b981;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 2px;
}

.temp-indicator {
  background: #60a5fa;
  box-shadow: 0 0 6px rgba(96, 165, 250, 0.6);
}

.status-indicator-ok {
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.network-indicator {
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.rack-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.location-icon {
  font-size: 1rem;
}

.rack-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

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

.rack-units {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.server-unit {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.server-unit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #10b981;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.server-unit:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.server-unit:hover::before {
  transform: scaleY(1);
}

.unit-number {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  font-weight: 600;
  min-width: 40px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.unit-face {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.unit-vents {
  flex: 1;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3) 0px,
    rgba(0, 0, 0, 0.3) 2px,
    transparent 2px,
    transparent 8px
  );
  border-radius: 3px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.unit-flash-lines {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.flash-line {
  position: absolute;
  width: 2px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 0.4),
    rgba(96, 165, 250, 1),
    rgba(59, 130, 246, 0.4)
  );
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.8), 0 0 4px rgba(59, 130, 246, 0.6);
  border-radius: 1px;
  animation: flashBlink ease-in-out infinite;
  /* Default values - will be overridden by JavaScript */
  animation-duration: 1s;
  animation-delay: 0s;
}

@keyframes flashBlink {
  0%, 100% {
    opacity: 0.2;
    box-shadow: 0 0 4px rgba(96, 165, 250, 0.3), 0 0 2px rgba(59, 130, 246, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 16px rgba(96, 165, 250, 1), 0 0 8px rgba(59, 130, 246, 0.8);
  }
}

.unit-status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.unit-status-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 70px;
  align-items: flex-end;
}

.unit-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.7rem;
}

.badge-label {
  color: rgba(226, 232, 240, 0.6);
  font-weight: 500;
}

.badge-value {
  color: #e2e8f0;
  font-weight: 600;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.badge-status {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.badge-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.8);
  flex-shrink: 0;
}

.badge-status .badge-value {
  color: #10b981;
}

.unit-label {
  font-size: 0.8rem;
  color: #e2e8f0;
  font-weight: 600;
  min-width: 60px;
  text-align: right;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.rack-footer {
  background: #0f172a;
  padding: 12px 20px;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
}

.rack-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
}

.rack-tooltip {
  position: absolute;
  background: #0f172a;
  color: #e2e8f0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 300px;
  line-height: 1.6;
  font-weight: 500;
}

.rack-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.rack-tooltip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0f172a;
}

.plans-section {
  padding: 60px 40px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-section.premium {
  background: var(--surface);
  border-radius: 20px;
  margin: 30px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  width: calc(100% - 40px);
  max-width: 1400px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.plans-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
  transition: color 0.3s ease;
}
.plans-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  transition: color 0.3s ease;
}
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.plan-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}
.plan:hover::before {
  transform: scaleX(1);
}
.plan h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.plan p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.plan .spec {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.plan .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 20px 0;
  font-size: 1.5rem;
}
.plan .price.highlight {
  font-weight: 800;
  color: #1e293b;
}
.plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  font-size: 0.9rem;
}
.plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}
.os-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 0;
}
.os-icon-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.os-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}
.os-icon-box img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}
.os-icon-box:hover img {
  transform: scale(1.1);
}
/* Modern Footer Design */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-tagline {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li {
  margin: 0;
}

.footer-links-list a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-list a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.3s ease;
}

.footer-links-list a:hover {
  color: #3b82f6;
  padding-left: 8px;
}

.footer-links-list a:hover::before {
  width: 4px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
  margin: 40px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: opacity(0.7);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.05);
}

.social-icon:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: opacity(1);
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.footer-copyright p {
  margin: 0;
}

/* Modern CTA Buttons */
.cta-button {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
}

.cta-button:active {
  transform: translateY(0) scale(1);
}

.discord-button {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.4);
  background: linear-gradient(135deg, #4752C4, #5865F2);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding: 40px 20px 30px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 15px;
  }

  .header-container .logo {
    height: 40px;
  }

  nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    gap: 4px;
  }

  nav a {
    font-size: 0.875rem;
    padding: 6px 8px;
  }

  .client-login-btn {
    margin-left: 8px !important;
    padding: 8px 16px !important;
    font-size: 0.875rem !important;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-home .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .hero-home .hero-content {
    text-align: center;
  }

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

  .hero-home h2 {
    text-align: center;
  }

  .hero-price {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-home p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    margin-bottom: 60px;
  }

  .hero-home .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-features {
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero-home .hero-features {
    justify-content: center;
  }

  .hero-features {
    gap: 30px;
  }

  /* Server Rack Responsive */
  .hero-rack {
    order: -1;
  }

  .server-rack {
    max-width: 100%;
  }

  .rack-tooltip {
    position: fixed;
    left: 50% !important;
    top: auto !important;
    bottom: 20px;
    transform: translateX(-50%);
    max-width: 90%;
  }

  .rack-tooltip.show {
    transform: translateX(-50%);
  }

  .rack-tooltip::before {
    display: none;
  }

  /* Status Panel Responsive */
  .rack-status-panel {
    gap: 10px;
    padding: 10px 15px;
  }

  .status-box {
    min-width: 50px;
  }

  .status-label {
    font-size: 0.65rem;
  }

  .status-value {
    font-size: 0.8rem;
  }

  /* Unit Status Badges Responsive */
  .unit-status-badges {
    min-width: 60px;
    gap: 3px;
  }

  .unit-badge {
    padding: 3px 6px;
    font-size: 0.65rem;
  }

  /* VPS Dashboard Responsive */
  .dashboard-instances {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 400px;
  }

  .vps-instance {
    padding: 10px;
  }

  .instance-header {
    margin-bottom: 10px;
  }

  .instance-resources {
    gap: 6px;
    margin-bottom: 8px;
  }

  /* cPanel Preview Responsive */
  .cpanel-body {
    flex-direction: column;
    height: auto;
  }

  .cpanel-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
  }

  .sidebar-section {
    flex: 1;
    min-width: 150px;
    margin-bottom: 12px;
  }

  .cpanel-content {
    padding: 16px;
  }

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

  .content-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .file-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .file-size,
  .file-date {
    min-width: auto;
  }

  .hero-feature-value {
    font-size: 1.75rem;
  }

  .hero-feature-label {
    font-size: 0.85rem;
  }

  .terminal-window {
    max-width: 100%;
  }

  .plans-section {
    padding: 40px 20px;
    margin: 0 10px;
  }

  .plans-section h2 {
    font-size: 1.8rem;
  }

  .plans-section p {
    font-size: 1rem;
  }

  .plan {
    margin: 15px 0;
  }

  .plan-row {
    flex-direction: column;
  }

  .os-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .os-icon-box {
    width: 60px;
    height: 60px;
  }

  .os-icon-box img {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-home .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-home .hero-content {
    text-align: center;
  }

  .hero-home h2 {
    text-align: center;
  }

  .hero-home p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-buttons {
    justify-content: center;
  }

  .hero-home .hero-features {
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .hero {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.spec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
  margin: 20px 0;
}
.plan, .os-icon-box, .hero a, nav a:last-child {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

/* Policy Card Styles for Terms, Abuse, Privacy */
.terms-card, .abuse-card, .privacy-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  max-width: 600px;
  margin: 48px auto 32px auto;
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s ease;
}
.terms-card h2, .abuse-card h2, .privacy-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  transition: color 0.3s ease;
}
.terms-card p, .abuse-card p, .privacy-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.terms-card ul, .abuse-card ul, .privacy-card ul,
.terms-card ol, .abuse-card ol, .privacy-card ol {
  text-align: left;
  margin: 0 auto 18px auto;
  max-width: 500px;
  color: #475569;
}
@media (max-width: 600px) {
  .header-container {
    padding: 0 15px;
  }
  
  .terms-card, .abuse-card, .privacy-card {
    padding: 24px 8px;
  }
} 

/* Modern Button Hover Effects */
.hero a,
.plan a,
.plans-section.premium a,
.plans-section .plan a {
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1), background 0.3s;
}
.hero a:hover,
.plan a:hover,
.plans-section.premium a:hover,
.plans-section .plan a:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 32px rgba(59,130,246,0.25), 0 2px 8px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #2563eb, #3b82f6 80%);
} 

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #3b82f6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.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);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    z-index: 1000;
  }

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

  .nav-menu a {
    margin: 15px 0;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
  }

  .nav-menu a:last-child {
    margin-top: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .nav-menu a:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  transition: color 0.3s ease;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  transition: all 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1d4ed8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--surface);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 24px;
}

.faq-answer p {
  margin: 0;
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
  .faq-container {
    margin: 0 10px;
  }
  
  .faq-question {
    padding: 20px 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
} 

.faq-bubble {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.08), 0 1.5px 6px rgba(59, 130, 246, 0.04);
  transition: background 0.3s ease;
  padding: 48px 48px 32px 48px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

@media (max-width: 900px) {
  .faq-bubble {
    padding: 32px 10px 24px 10px;
  }
} 

/* 3x2 grid for plans */
/* Modern VPS Plans Grid */
.plans-plus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.plans-plus-grid .plan {
  width: 100%;
  max-width: 360px;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Most Popular badge and border for Silver plan */
.plans-plus-grid .plan-silver {
  border: 4px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.most-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.most-popular-badge::before {
  content: '⚡';
  font-size: 1rem;
  display: inline-block;
  line-height: 1;
}

.best-value-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.best-value-badge::before {
  content: '💎';
  font-size: 1rem;
  display: inline-block;
  line-height: 1;
}

.plans-plus-grid .plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.plans-plus-grid .plan::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.plans-plus-grid .plan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.plans-plus-grid .plan-silver:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.15);
}

.plans-plus-grid .plan:hover::before {
  transform: scaleX(1);
}

.plans-plus-grid .plan:hover::after {
  opacity: 1;
}

.plans-plus-grid .plan img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.15));
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.plans-plus-grid .plan:hover img {
  transform: scale(1.1) rotate(5deg);
}

.plans-plus-grid .plan h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.plans-plus-grid .plan .spec {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding-left: 8px;
  transition: color 0.3s ease;
}

.plans-plus-grid .plan .spec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.plans-plus-grid .plan .price {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 24px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
}

.plans-plus-grid .plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: auto;
}

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

.plans-plus-grid .plan a:hover::before {
  left: 100%;
}

.plans-plus-grid .plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .plans-plus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .plans-plus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }
  
  .plans-plus-grid .plan {
    max-width: 100%;
  }
  
  .most-popular-badge {
    font-size: 0.8rem;
    padding: 5px 16px;
  }
  
  .best-value-badge {
    font-size: 0.8rem;
    padding: 5px 16px;
  }
} 

/* Feature Bubbles for Shared Hosting */
.feature-bubble {
  background: var(--surface);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-bubble h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-bubble p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Locations box under OS icons */
.locations-box {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 18px 28px;
  margin: 32px auto 0 auto;
  display: flex;
  transition: background 0.3s ease;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  width: fit-content;
}
.flag-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.locations-box strong {
  margin-right: 10px;
}

/* Homepage Choose Your Tier Section - Specific Styles */
/* Modern Homepage Plans Grid */
.homepage-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1000px;
}

.homepage-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 40px 30px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.homepage-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.homepage-plan::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.homepage-plan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.homepage-plan:hover::before {
  transform: scaleX(1);
}

.homepage-plan:hover::after {
  opacity: 1;
}

.homepage-plan img {
  display: block;
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.15));
  transition: transform 0.4s ease;
}

.homepage-plan:hover img {
  transform: scale(1.1) rotate(5deg);
}

.homepage-plan h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.homepage-plan p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.3s ease;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.homepage-plan .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0;
  position: relative;
  z-index: 1;
  display: block;
  transition: color 0.3s ease;
}

.homepage-plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.homepage-plan a:hover::before {
  left: 100%;
}

.homepage-plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Coming Soon Styles */
.homepage-plan.coming-soon {
  cursor: not-allowed;
  position: relative;
}

.homepage-plan.coming-soon:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--border);
}

.homepage-plan.coming-soon::before {
  display: none;
}

.coming-soon-badge {
  background: linear-gradient(135deg, #64748b, #475569);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
  display: inline-block;
  cursor: not-allowed;
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.2);
  position: relative;
  z-index: 1;
}

/* Additional Services Section */
/* Modern Additional Services Cards */
.additional-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.service-card a::after {
  content: '→';
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-card a:hover {
  color: var(--link-hover);
  gap: 8px;
}

.service-card a:hover::after {
  transform: translateX(4px);
}

.service-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
  border-radius: 0 15px 15px 0;
}

/* Responsive design for homepage plans */
@media (max-width: 900px) {
  .homepage-plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
  }
  
  .homepage-plan {
    width: 100%;
    max-width: none;
    padding: 25px 20px;
  }
  
  .homepage-plan h3 {
    font-size: 1.2rem;
  }
  
  .homepage-plan p {
    font-size: 0.85rem;
  }
  
  .homepage-plan .price {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .plans-section {
    padding: 30px 15px;
    margin: 0 5px;
  }

  .plans-section h2 {
    font-size: 1.5rem;
  }

  .plans-section p {
    font-size: 0.9rem;
  }

  .homepage-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .homepage-plan {
    padding: 25px 20px;
    margin: 0;
  }

  .homepage-plan h3 {
    font-size: 1.3rem;
  }

  .homepage-plan p {
    font-size: 0.9rem;
  }

  .homepage-plan .price {
    font-size: 1.5rem;
  }

  .homepage-plan img {
    width: 35px;
    height: 35px;
  }

  .coming-soon-badge {
    font-size: 0.7rem;
  }

  .homepage-plan a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Responsive design for additional services */
@media (max-width: 768px) {
  .additional-services {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .additional-services {
    gap: 15px;
    margin-top: 25px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
  
  .service-card a {
    font-size: 0.9rem;
  }
}

/* Infrastructure Section Styles */
.infrastructure-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  position: relative;
  overflow: visible;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.infrastructure-text {
  flex: 1;
  text-align: left;
}

.infrastructure-text h3 {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.infrastructure-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.infrastructure-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
  margin: 8px 0;
}

.location-item::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -20px;
  right: -20px;
  bottom: -15px;
  z-index: 1;
}

.location-item:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.location-item .flag-icon {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.location-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
  background: var(--surface);
}



.infrastructure-image {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

.main-infrastructure-img {
  width: 90%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.news-overlay {
  position: relative;
  margin-top: 20px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.news-overlay p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Responsive design for infrastructure */
@media (max-width: 900px) {
  .infrastructure-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }
  
  .infrastructure-text {
    text-align: center;
  }
  
  .location-item {
    justify-content: center;
  }
  
  .location-hover-img {
    display: none;
  }
  
  .main-infrastructure-img {
    width: 100%;
    height: 250px;
  }
  
  .news-overlay {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .infrastructure-container {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .infrastructure-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .infrastructure-text h3 {
    font-size: 0.8rem;
  }
  
  .infrastructure-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .location-item {
    font-size: 0.95rem;
    padding: 6px 0;
    margin: 6px 0;
  }
  
  .location-item .flag-icon {
    width: 18px;
  }
  
  .main-infrastructure-img {
    height: 200px;
  }
  
  .news-overlay {
    padding: 15px;
    margin-top: 15px;
  }
  
  .news-overlay p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .infrastructure-container {
    padding: 25px 10px;
    gap: 25px;
  }
  
  .infrastructure-text h2 {
    font-size: 1.6rem;
  }
  
  .infrastructure-text p {
    font-size: 0.9rem;
  }
  
  .location-item {
    font-size: 0.9rem;
  }
  
  .main-infrastructure-img {
    height: 180px;
  }
}

/* Values Grid Styles */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-item:nth-child(4) {
  grid-column: 2;
}

.value-item:nth-child(5) {
  grid-column: 2;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.value-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  line-height: 1.5;
  margin: 0;
}

/* Logo Container Styles */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Mobile Responsive for Values Grid */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .value-item {
    padding: 15px;
  }
  
  .value-item:nth-child(4),
  .value-item:nth-child(5) {
    grid-column: span 1;
  }
  
  .value-icon {
    font-size: 1.5rem;
  }

  /* Server Defense Game Responsive */
  .hero-game {
    order: -1;
  }

  .game-container {
    padding: 16px;
    max-width: 100%;
  }

  .game-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .game-stats {
    justify-content: space-around;
  }

  .game-board {
    min-height: 280px;
    padding: 12px;
  }

  .servers-row {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px;
  }

  .server-node {
    min-width: 70px;
    padding: 8px;
  }

  .server-icon {
    font-size: 1.5rem;
  }

  .attack-zone {
    height: 200px;
  }

  .attack {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* VPS Dashboard Responsive */
  .dashboard-status-bar {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .status-bar-item {
    min-width: 60px;
  }

  .status-bar-label {
    font-size: 0.65rem;
  }

  .status-bar-value {
    font-size: 0.8rem;
  }

  .dashboard-instances {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .vps-dashboard {
    max-width: 100%;
  }

  .instance-location {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .dashboard-status-bar {
    gap: 8px;
  }

  .status-bar-icon {
    font-size: 0.75rem;
  }

  /* Support Ticket System Responsive */
  .hero-tickets {
    order: -1;
  }

  .ticket-system {
    max-width: 100%;
  }

  .ticket-list {
    max-height: 300px;
  }

  .ticket-item {
    padding: 10px;
    gap: 10px;
  }

  .ticket-subject {
    font-size: 0.8rem;
  }

  .ticket-status {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .ticket-footer {
    padding: 10px 15px;
  }

  .ticket-stats {
    font-size: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
  
  .value-content h4 {
    font-size: 1rem;
  }
  
  .value-content p {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 20px;
  }
} 

/* Dedicated Servers Table Styles */
.server-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px auto;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  width: 100%;
}

.sort-controls, .location-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sort-controls span, .location-controls span {
  font-weight: 600;
  color: #475569;
  margin-right: 10px;
}

.sort-btn, .location-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
}

.sort-btn:hover, .location-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.sort-btn.active, .location-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.servers-table-container {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
  margin: 0 auto 30px auto;
  max-width: 1200px;
  width: 100%;
}

.servers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.servers-table thead {
  background: var(--surface-2);
}

.servers-table th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  font-size: 14px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.servers-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: color 0.3s ease, border-color 0.3s ease;
  vertical-align: middle;
}

.servers-table tbody tr:hover {
  background: var(--surface-2);
}

.plan-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.cpu-specs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cpu-specs .cores {
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}

.cpu-specs .speed {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.servers-table .price {
  font-weight: 700;
  color: #3b82f6;
  font-size: 16px;
}

.availability-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.availability-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.availability-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Responsive Table */
@media (max-width: 900px) {
  .server-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 30px;
    margin: 0 auto 30px auto;
    width: calc(100% - 40px);
  }
  
  .servers-table-container {
    margin: 0 auto 30px auto;
    width: calc(100% - 40px);
  }
  
  .sort-controls, .location-controls {
    justify-content: center;
  }
  
  .servers-table-container {
    overflow-x: auto;
  }
  
  .servers-table {
    min-width: 800px;
  }
}

@media (max-width: 600px) {
  .server-controls {
    padding: 15px 20px;
    margin: 0 auto 30px auto;
    width: calc(100% - 30px);
  }
  
  .servers-table-container {
    margin: 0 auto 30px auto;
    width: calc(100% - 30px);
  }
  
  .sort-controls, .location-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-controls span, .location-controls span {
    text-align: center;
    margin-bottom: 8px;
  }
  
  .sort-btn, .location-btn {
    text-align: center;
  }
  
  .servers-table th,
  .servers-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .plan-name {
    font-size: 14px;
  }
  
  .servers-table .price {
    font-size: 15px;
  }
  
  .availability-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
} 

/* Custom Options Section */
.custom-options-section {
  text-align: center;
  margin: 30px auto;
  padding: 20px;
  background: var(--surface);
  border-radius: 8px;
  border: 2px solid var(--border);
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.custom-options-section p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.contact-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Responsive Custom Options */
@media (max-width: 600px) {
  .custom-options-section {
    padding: 15px;
    margin: 20px 15px;
    max-width: 350px;
  }
  
  .custom-options-section p {
    font-size: 0.9rem;
  }
  
  .contact-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* Support Pop-up */
.support-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateY(100px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 400px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.support-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.support-popup-close:hover {
  background: var(--surface-2);
  color: var(--text);
}

.support-popup-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding-right: 24px;
}

.support-popup-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-popup-text {
  flex: 1;
  min-width: 0;
}

.support-popup-title {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.support-popup-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.support-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.support-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Responsive adjustments for support pop-up */
@media (max-width: 768px) {
  .support-popup {
    display: none !important;
  }
} 