/*
Theme Name: GainWave
Theme URI: https://netslim.nl
Author: Netslim
Author URI: https://netslim.nl
Description: Private investors auto-trading community. White theme with colorful accents. Multi-chain support (Solana, ETH, BSC), rug pull scanner, auto-trading with 12 protections, learning mode, team management.
Version: 1.0.0
License: Private
Text Domain: gainwave
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ======== RESET & BASE ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #faf8ff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: #7c5ccf; transition: color 0.2s; }
a:hover { color: #5a3db0; }

/* Selection */
::selection { background: #c9b8ff; color: #1a1a2e; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ecff; }
::-webkit-scrollbar-thumb { background: #c9b8ff; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #a68de0; }

/* ======== LAYOUT ======== */
.gw-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======== HEADER ======== */
.gw-header {
  background: #ffffff;
  border-bottom: 1px solid #ede6ff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.gw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gw-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c5ccf, #c47a9e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.gw-logo-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  background: linear-gradient(135deg, #7c5ccf, #c47a9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ======== NAVIGATION ======== */
.gw-nav { display: flex; gap: 4px; }

.gw-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b5b8a;
  transition: all 0.15s;
}

.gw-nav a:hover,
.gw-nav a.active {
  background: #f0ecff;
  color: #7c5ccf;
}

/* ======== HERO ======== */
.gw-hero {
  background: linear-gradient(135deg, #f0ecff 0%, #ffe8f4 50%, #e8f4ff 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/dist/assets/vecteezy_colorful-sky-with-pink-and-blue-clouds-dreamlike_46124601.jpeg') center/cover;
  opacity: 0.15;
}

.gw-hero-content { position: relative; z-index: 1; }

.gw-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.gw-hero h1 span {
  background: linear-gradient(135deg, #7c5ccf, #c47a9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gw-hero p {
  font-size: 17px;
  color: #6b5b8a;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ======== BUTTONS ======== */
.gw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.gw-btn-primary {
  background: linear-gradient(135deg, #7c5ccf, #c47a9e);
  color: white;
}

.gw-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 92, 207, 0.3);
  color: white;
}

.gw-btn-secondary {
  background: white;
  color: #7c5ccf;
  border: 1.5px solid #c9b8ff;
}

.gw-btn-secondary:hover {
  background: #f0ecff;
  color: #5a3db0;
}

.gw-btn-small {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 6px;
}

/* ======== CARDS ======== */
.gw-card {
  background: white;
  border: 1px solid #ede6ff;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.gw-card:hover {
  border-color: #c9b8ff;
  box-shadow: 0 4px 20px rgba(124, 92, 207, 0.08);
}

/* ======== STATS ======== */
.gw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 40px 0;
}

.gw-stat {
  text-align: center;
  padding: 24px;
}

.gw-stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #7c5ccf;
}

.gw-stat-label {
  font-size: 12px;
  color: #8a7db0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ======== SECTIONS ======== */
.gw-section {
  padding: 60px 0;
}

.gw-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.gw-section-subtitle {
  font-size: 15px;
  color: #8a7db0;
  margin-bottom: 32px;
}

/* ======== FEATURE GRID ======== */
.gw-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gw-feature {
  padding: 28px;
}

.gw-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.gw-feature h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.gw-feature p {
  font-size: 13px;
  color: #8a7db0;
  line-height: 1.6;
}

/* ======== FOOTER ======== */
.gw-footer {
  background: #1a1a2e;
  color: #b0a8cc;
  padding: 40px 0;
  text-align: center;
}

.gw-footer a { color: #c9b8ff; }
.gw-footer a:hover { color: white; }

/* ======== CONTENT ======== */
.gw-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.gw-content h1 { font-size: 32px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.gw-content h2 { font-size: 22px; font-weight: 600; color: #1a1a2e; margin: 32px 0 12px; }
.gw-content p { font-size: 15px; color: #4a4a6a; line-height: 1.7; margin-bottom: 16px; }
.gw-content ul { margin-left: 20px; color: #4a4a6a; }
.gw-content li { margin-bottom: 6px; }

/* ======== ADMIN DASHBOARD ======== */
.gw-admin-page {
  background: #faf8ff;
}

.gw-admin-sidebar {
  width: 220px;
  background: white;
  border-right: 1px solid #ede6ff;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
}

.gw-admin-main {
  margin-left: 220px;
  min-height: 100vh;
  padding: 24px 32px;
}

/* ======== BADGES ======== */
.gw-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.gw-badge-purple { background: #f0ecff; color: #7c5ccf; }
.gw-badge-green { background: #e8f5ec; color: #2d8a4e; }
.gw-badge-red { background: #fde8e8; color: #c0392b; }
.gw-badge-yellow { background: #fff8e8; color: #b8860b; }
.gw-badge-blue { background: #e8f0ff; color: #2d6bc0; }

/* ======== TABLE ======== */
.gw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.gw-table thead th {
  text-align: left;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a7db0;
  border-bottom: 1.5px solid #ede6ff;
}

.gw-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0ecff;
  color: #4a4a6a;
}

.gw-table tbody tr:hover td {
  background: #faf8ff;
}

/* ======== FORM ELEMENTS ======== */
.gw-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ede6ff;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: #1a1a2e;
  transition: border-color 0.15s;
}

.gw-input:focus {
  outline: none;
  border-color: #c9b8ff;
}

.gw-input::placeholder { color: #b0a8cc; }

/* Toggle switch */
.gw-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #ddd5f0;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.gw-toggle.on { background: #7c5ccf; }

.gw-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.gw-toggle.on::after { transform: translateX(18px); }

/* ======== PROGRESS RING ======== */
.gw-ring { position: relative; width: 120px; height: 120px; }
.gw-ring svg { transform: rotate(-90deg); }
.gw-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ======== ANIMATIONS ======== */
@keyframes soft-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.gw-pulse { animation: soft-pulse 2.5s ease-in-out infinite; }

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .gw-features { grid-template-columns: 1fr; }
  .gw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gw-hero h1 { font-size: 28px; }
  .gw-nav { display: none; }
  .gw-admin-sidebar { width: 60px; }
  .gw-admin-main { margin-left: 60px; }
}
