/* Emperor Bots Custom CSS - Independent & Premium */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Inter:wght@400;500&display=swap');

:root {
  /* Premium Dark Palette */
  --bg-dark-base: #060608;
  --bg-dark-card: rgba(255, 255, 255, 0.02);
  --bg-dark-card-hover: rgba(255, 255, 255, 0.05);

  /* Vibrant Accents */
  --accent-primary: #ff3366;
  --accent-secondary: #ff9933;
  --accent-tertiary: #9d4edd;

  /* Text */
  --text-main: #f8f9fa;
  --text-muted: #adb5bd;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  --gradient-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --gradient-purple: linear-gradient(135deg, #7b2cbf 0%, #c77dff 100%);

  /* Utilities */
  --glass-border: 1px solid rgba(255, 255, 255, 0.05);
  --glass-border-hover: 1px solid rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glow-primary: 0 0 20px rgba(255, 51, 102, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

/* ===== SMOOTH SCROLL (all anchor links) ===== */
html {
  scroll-behavior: smooth;
}

/* ===== ANIMATED GRADIENT TEXT ===== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 30%, #f59e0b 60%, #f97316 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.text-orange {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 40%, #ef4444 80%, #f97316 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 40%, #fbbf24 80%, #f59e0b 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4.5s ease infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Dynamic Background Orbs */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatOrb 25s infinite ease-in-out alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 51, 102, 0.15);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(157, 78, 221, 0.15);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 153, 51, 0.12);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: var(--glass-border);
}

.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(253, 160, 133, 0.5));
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo img {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 40px;
  position: relative;
}

.badge {
  background: rgba(255, 51, 102, 0.12);
  border: 1px solid rgba(255, 51, 102, 0.4);
  color: var(--accent-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 1s ease-out;
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.15);
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
  padding-top: 50px;
  border-top: var(--glass-border);
  animation: fadeIn 1s ease-out 0.8s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #f97316;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  line-height: 1;
  display: flex;
  align-items: center;
}

.stat-plus {
  font-size: 2.5rem;
  color: #f97316;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  color: #9da3ae;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 600;
}

/* Features Section */
.section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  background: var(--bg-dark-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Colored top accent border on hover per card */
.feat-1::after,
.feat-2::after,
.feat-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-1::after {
  background: linear-gradient(90deg, #ff3366, #ff6699);
}

.feat-2::after {
  background: linear-gradient(90deg, #ff9933, #ffcc66);
}

.feat-3::after {
  background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.feat-1:hover::after,
.feat-2:hover::after,
.feat-3:hover::after {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-1 .feature-icon-wrapper {
  color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}

.feat-2 .feature-icon-wrapper {
  color: var(--accent-secondary);
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.2);
}

.feat-3 .feature-icon-wrapper {
  color: var(--accent-tertiary);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-secondary);
  margin-right: 12px;
  font-size: 0.8rem;
}

/* Pricing Section Redesign */
.pricing-header-redesign {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title-redesign {
  font-size: 2.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

.text-orange {
  color: #f97316;
}

.pricing-subtitle-redesign {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Toggle Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.toggle-label.active {
  color: white;
}

.toggle-label .discount {
  color: #22c55e;
  font-size: 0.8rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #f97316;
}

input:checked+.slider:before {
  transform: translateX(24px);
}

/* Interactive Layout */
.pricing-interactive-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

/* Sidebar (Left) */
.pricing-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}

.plan-btn {
  background: rgba(15, 10, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: auto;
  position: relative;
  display: flex;
  align-items: center;
  /* ALIGN ROW */
  gap: 15px;
  /* Spacing between icon and text */
}

.plan-btn:hover {
  background: rgba(25, 15, 10, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.plan-btn.active {
  background: rgba(30, 15, 10, 0.9);
  border-color: #f97316;
  /* CRISP ORANGE OUTLINE */
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.plan-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-btn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-btn-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.plan-btn-top-row h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.plan-badge {
  background: #ef4444;
  color: white;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.plan-btn-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
}

/* Detail Panel (Right) */
.pricing-detail-card {
  background: rgba(25, 15, 10, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  padding: 25px 30px;
  /* Tighter padding */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.detail-bg-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: auto;
  opacity: 0.04;
  z-index: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: grayscale(100%);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-title-col {
  flex: 1;
  text-align: left;
  min-width: 200px;
}

.detail-title-col h3 {
  font-size: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
  white-space: nowrap;
}

.detail-title-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.detail-price-col {
  text-align: right;
  flex-shrink: 0;
}

.detail-price-col .price-value {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.detail-price-col .currency {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 4px;
  margin-right: 2px;
}

.detail-price-col span[id="detail-price"] {
  font-size: 2.5rem;
  /* Smaller price text */
  font-weight: 800;
}

.detail-price-col .period {
  font-size: 1rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
  margin-left: 4px;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  /* Tighter gap */
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  /* Smaller text */
  font-weight: 500;
}

.detail-feature-item i {
  font-size: 1rem;
  color: #f59e0b !important;
  /* GOLD CHECKMARKS */
}

.pricing-buy-btn {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  /* Tighter button padding */
  border-radius: 10px;
  font-size: 1.05rem;
  /* Smaller text */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pricing-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

/* Performance Compare */
.perf-compare-wrap {
  padding-top: 4px;
}

.perf-compare-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 0 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.perf-compare-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.perf-compare-subtitle {
  text-align: center;
  color: #9da3ae;
  font-size: 1rem;
  margin: 0 0 20px;
}

.perf-highlight {
  color: #f7b446;
  font-weight: 700;
}

.perf-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perf-card {
  border-radius: 16px;
  padding: 30px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 25, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.perf-card-market {
  box-shadow: none;
}

.perf-card-emperor {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
  background: rgba(18, 12, 10, 0.7);
}

.perf-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.perf-card-market .perf-chip {
  color: #9da3ae;
  background: rgba(255, 255, 255, 0.05);
}

.perf-card-emperor .perf-chip {
  color: #fff;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.perf-card h3 {
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.perf-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.perf-metric small {
  display: block;
  color: #939ba8;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.perf-metric strong {
  font-size: 2rem;
  font-weight: 800;
}

.perf-card-emperor .perf-metric strong {
  color: #ffd18a;
}

.perf-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin-bottom: 10px;
}

.perf-bar span {
  display: block;
  height: 100%;
  background: #f28b22;
  transition: width 0.6s ease;
}

.perf-bar-live span {
  background: #f6a12a;
}

.perf-footnote {
  margin: 0;
  font-size: 0.82rem;
  color: #8f98a5;
}

@media (max-width: 900px) {
  .perf-compare-grid {
    grid-template-columns: 1fr;
  }

  .perf-compare-title {
    font-size: 2rem;
  }
}

/* --- TEAM SECTION --- */
#ekibimiz {
  padding: 80px 5%;
}

.team-header {
  margin-bottom: 50px;
}

/* Section tag pill used across Team, Contact headers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #f97316;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.team-title {
  font-size: 3.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

.team-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card-discord {
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(249, 115, 22, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-discord:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}

.team-banner {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: #222;
  /* fallback */
  position: relative;
}

/* Fades the bottom of the banner into the dark card */
.team-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #111111);
}

.team-content {
  padding: 0 20px 25px 20px;
  text-align: center;
  position: relative;
}

.team-avatar-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: -55px auto 15px auto;
  /* Pulls it up over the banner */
  z-index: 2;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #111111;
  /* Matches card background */
}

/* Gold Crown wrapper */
.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #111111;
  /* Ring around the badge */
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-badge i {
  color: #eab308;
  /* Gold crown */
  font-size: 1.1rem;
}

.team-card-discord h3.team-name {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2px;
}

.team-primary-title {
  color: #eab308;
  /* Gold text */
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  /* Faint gray line */
  width: 40px;
  margin: 0 auto 15px auto;
}

.team-secondary-title {
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Buttons grid container */
.team-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-btn-main {
  flex: 1;
  /* Takes up remaining space */
  background: rgba(255, 255, 255, 0.05);
  /* very dark gray */
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.social-btn2 {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.team-btn-main:hover,
.social-btn2:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* --- CONTACT SECTION --- */
#iletisim {
  padding: 80px 5%;
}

.contact-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.contact-discord-card {
  background: #181512;
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  width: 100%;
  max-width: 700px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 115, 22, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-discord-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(249, 115, 22, 0.1);
  transform: translateY(-4px);
}

/* Radial glow in the background */
.contact-discord-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-icon-box {
  background: linear-gradient(135deg, #f97316, #ea580c);
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.contact-icon-box i {
  color: white;
  font-size: 2rem;
}

.contact-card-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
}

.contact-card-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.contact-join-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-join-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.contact-join-link:hover {
  color: #ea580c;
  text-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.contact-join-link:hover i {
  transform: translateX(4px);
}

/* Footer */
footer {
  border-top: var(--glass-border);
  padding: 60px 5% 40px;
  margin-top: 100px;
  text-align: center;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--glass-border);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
  transform: translateY(-3px);
}

/* Animations Tools */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --- FLOATING QUICK ACCESS MENU --- */
.floating-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 14, 10, 0.95);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Tooltip on hover */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 14, 8, 0.95);
  color: #f8f9fa;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-50%) translateX(6px);
}

.float-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.15);
  color: white;
}

/* Button Gradient Variants */
.float-discord {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
}

.float-up {
  background: linear-gradient(135deg, #EF4444, #F97316);
}

.float-star {
  background: linear-gradient(135deg, #D946EF, #EC4899);
}

.float-team {
  background: linear-gradient(135deg, #64748b, #475569);
}

.float-tos {
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
}

.float-pricing {
  background: linear-gradient(135deg, #F59E0B, #F97316);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .pricing-card.premium {
    transform: scale(1);
  }

  .pricing-card.premium:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  /* Simplified for mobile */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .stats-container {
    gap: 30px;
  }

  .site-watermark img {
    width: 300px;
    opacity: 0.02;
  }

  .hero-front-logo {
    width: 100px;
    margin-bottom: 20px;
  }
}

/* Site Watermark Logo */
.site-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.site-watermark img {
  width: 600px;
  max-width: 90vw;
  opacity: 0.03;
  filter: grayscale(100%) brightness(200%);
  /* Makes it blend as a light subtle shape */
  animation: slowPulse 10s ease-in-out infinite alternate;
}

@keyframes slowPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.02;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.05;
  }
}

/* Hero Front Logo */
.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  animation: fadeInDown 1s ease-out;
}

.hero-front-logo {
  width: 100px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 30px rgba(253, 160, 133, 0.4));
  animation: floatOrb 6s ease-in-out infinite alternate;
}

/* --- LOADING SCREEN --- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030303;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  overflow: hidden;
}

/* Fast Gold Particles Container */
#loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #f6d365;
  border-radius: 50%;
  box-shadow: 0 0 8px #fda085;
  animation: shootUp linear infinite;
  opacity: 0;
}

@keyframes shootUp {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

/* Glowing Logo */
.loading-logo-image {
  width: 120px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(246, 211, 101, 0.3));
  transition: filter 0.8s ease, transform 0.8s ease;
  animation: goldPulseLogo 2s infinite alternate;
}

@keyframes goldPulseLogo {
  0% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1.05);
  }
}

/* Progress bar container */
.loading-bar-container {
  width: 350px;
  max-width: 80%;
  z-index: 2;
}

.loading-bar-header {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 0.9rem;
  color: #f6d365;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.loading-bar-track {
  width: 100%;
  height: 3px;
  background-color: rgba(246, 211, 101, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.loading-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  box-shadow: 0 0 15px #fda085;
  transition: width 0.1s linear, box-shadow 0.3s ease;
}

.loading-status-text {
  font-family: monospace;
  font-size: 0.8rem;
  color: #fda085;
  text-align: center;
  margin-top: 15px;
  letter-spacing: 1px;
}

/* ============================================
   tsParticles
   ============================================ */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   Hamburger Menu + Mobile Navbar
   ============================================ */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-bottom: var(--glass-border);
    z-index: 150;
  }

  .nav-links.open {
    max-height: 500px;
    padding: 16px 0;
  }

  .nav-links .nav-link {
    padding: 14px 5%;
    font-size: 1rem;
    border-bottom: var(--glass-border);
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  /* Hide the Yetkilendir button on mobile, show only hamburger */
  .navbar-right .btn-primary {
    display: none;
  }

  .floating-menu {
    display: none;
  }

  /* Hide floating menu on mobile to avoid clutter */
}

/* ============================================
   Discord Command Showcase
   ============================================ */
#komutlar {
  padding: 80px 5%;
}

.discord-mock {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  background: #313338;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dc-sidebar {
  width: 220px;
  background: #2b2d31;
  flex-shrink: 0;
  padding: 16px 0;
}

.dc-server-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
  background: #181512;
}

.dc-server-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-channel-list {
  padding: 0 8px;
}

.dc-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: #949ba4;
  letter-spacing: 1px;
  padding: 8px 8px 4px 8px;
  text-transform: uppercase;
}

.dc-channel {
  font-size: 0.9rem;
  color: #949ba4;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}

.dc-channel:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #dbdee1;
}

.dc-channel.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dc-channel i {
  font-size: 0.8rem;
}

.dc-messages {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.dc-msg-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
  animation: dcFadeIn 0.5s ease forwards;
}

@keyframes dcFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.dc-delay-1 {
  animation-delay: 0.3s;
}

.dc-delay-2 {
  animation-delay: 0.8s;
}

.dc-delay-3 {
  animation-delay: 1.4s;
}

.dc-delay-4 {
  animation-delay: 1.9s;
}

.dc-delay-5 {
  animation-delay: 2.5s;
}

.dc-delay-6 {
  animation-delay: 3.0s;
}

.dc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.dc-bot-avatar {
  border-radius: 50%;
  background: #181512;
  padding: 2px;
}

.dc-msg-header {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 4px;
}

.dc-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.dc-bot-name {
  color: #6ea6ff;
}

.dc-bot-tag {
  background: #5865f2;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

.dc-time {
  font-size: 0.72rem;
  color: #83878f;
}

.dc-bubble {
  color: #dbdee1;
  font-size: 0.92rem;
  line-height: 1.6;
  font-family: monospace;
}

.dc-arg {
  color: #f97316;
  font-weight: 600;
}

.dc-embed {
  display: flex;
  margin-top: 4px;
  border-radius: 6px;
  overflow: hidden;
  max-width: 440px;
  background: #2b2d31;
}

.dc-embed-bar {
  width: 4px;
  flex-shrink: 0;
}

.dc-embed-body {
  padding: 12px 16px;
  color: #dbdee1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.dc-embed-body strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.dc-embed-body code {
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
}

/* ============================================
   FAQ Accordion
   ============================================ */
#sss {
  padding: 80px 5%;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #f97316;
}

.faq-item.open .faq-question {
  color: #f97316;
}

.faq-question span {
  flex: 1;
}

.faq-question i {
  font-size: 0.9rem;
  color: #666;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: #f97316;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 24px 20px 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ============================================
   Feature Card Hover Previews
   ============================================ */
.feature-card {
  /* Ensure relative is set for the preview overlay */
  position: relative;
  overflow: hidden;
}

.feature-preview {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(10, 8, 6, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.6;
}

.feature-card:hover .feature-preview {
  bottom: 0;
}

.feature-preview .preview-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #f97316;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-cmd {
  font-family: monospace;
  color: #f97316;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  display: block;
}

/* ============================================
   Extended Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
  .discord-mock {
    flex-direction: column;
  }

  .dc-sidebar {
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
  }

  .dc-server-icon {
    margin: 0 0 0 16px;
    flex-shrink: 0;
  }

  .dc-channel-list {
    display: flex;
    gap: 6px;
    padding: 0 8px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .dc-category {
    display: none;
  }

  .dc-channel {
    border-radius: 20px;
    padding: 5px 12px;
  }

  .dc-messages {
    padding: 16px;
  }

  .dc-embed {
    max-width: 100%;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 18px 16px 18px;
  }

  .team-title,
  .team-subtitle {
    text-align: center;
  }

  .pricing-interactive-wrapper {
    flex-direction: column;
  }

  #sss,
  #komutlar,
  #iletisim {
    padding: 60px 5%;
  }
}

/* ============================================
   BOT DEMO SECTION
   ============================================ */
#demo {
  padding: 80px 5%;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared panel base */
.demo-panel,
.demo-reviews-card,
.demo-ticket-embed {
  background: #1a1814;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px;
  color: #dbdee1;
}

.demo-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(249, 115, 22, 0.4);
  flex-shrink: 0;
  background: #111;
}

.demo-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-username {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.demo-pipe {
  color: #555;
}

.demo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.demo-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-gold {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.badge-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.demo-hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 16px 0;
}

.demo-section-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #949ba4;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Stat Cards (3-col) */
.demo-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.demo-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.demo-stat-icon {
  font-size: 1.1rem;
}

.demo-stat-label {
  font-size: 0.68rem;
  color: #949ba4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* Row list */
.demo-row-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: #b5bac1;
}

.demo-row-val {
  font-weight: 700;
  color: #fff;
}

.demo-pill {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}

.demo-pill-blue {
  background: rgba(88, 101, 242, 0.2);
  color: #6ea6ff;
  border-color: rgba(88, 101, 242, 0.4);
}

/* Reviews mini inside demo */
.demo-review-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.demo-review-score-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.demo-review-score-card small {
  font-size: 0.7rem;
  color: #949ba4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-big-score {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 4px 0 2px;
}

.demo-stars {
  color: #eab308;
  font-size: 1rem;
}

.demo-review-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-review-item {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(249, 115, 22, 0.5);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
}

.demo-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.demo-stars-sm {
  color: #eab308;
  font-size: 0.82rem;
  font-weight: 700;
}

.demo-review-date {
  color: #949ba4;
  font-size: 0.72rem;
}

.demo-review-text {
  color: #b5bac1;
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Ticket Embed */
.demo-ticket-embed {
  border-left: 4px solid #22c55e;
}

.demo-ticket-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-ticket-server-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

.demo-ticket-server-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.demo-ticket-time {
  font-size: 0.7rem;
  color: #949ba4;
  margin-left: 8px;
}

.demo-ticket-embed-inner {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 14px;
}

.demo-ticket-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.demo-ticket-sub {
  color: #b5bac1;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.demo-ticket-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.demo-ticket-meta-cell {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-ticket-meta-cell small {
  font-size: 0.68rem;
  color: #949ba4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-ticket-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.demo-val-red {
  color: #ef4444;
}

.demo-ticket-rate-label {
  font-size: 0.8rem;
  color: #949ba4;
  margin-bottom: 10px;
}

.demo-ticket-stars {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.demo-ticket-stars span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.8rem;
  color: #949ba4;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-star-active {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: white !important;
}

/* ============================================
   REVIEWS (YORUMLAR) SECTION
   ============================================ */
#yorumlar {
  padding: 80px 5%;
}

.reviews-summary-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 700px;
  margin: 0 auto 60px auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 40px;
}

.reviews-big-score {
  text-align: center;
  flex-shrink: 0;
}

.reviews-score-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.reviews-score-denom {
  font-size: 1.4rem;
  color: #aaa;
  font-weight: 600;
}

.reviews-stars {
  color: #eab308;
  font-size: 1.3rem;
  margin: 6px 0;
}

.reviews-count {
  color: #949ba4;
  font-size: 0.85rem;
}

.reviews-bar-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #949ba4;
}

.reviews-bar-row span:first-child {
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.reviews-bar-row span:last-child {
  width: 16px;
  text-align: right;
  flex-shrink: 0;
}

.reviews-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #eab308, #f97316);
  border-radius: 4px;
  transition: width 1s ease;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  background: rgba(249, 115, 22, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

.review-date {
  color: #949ba4;
  font-size: 0.75rem;
  margin: 0;
}

.review-score-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #eab308, #f97316);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}

.review-stars {
  color: #eab308;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: #b5bac1;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Mobile for Demo + Reviews */
@media (max-width: 768px) {
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-ticket-meta-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary-row {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BERRY ROLEPLAY EMBED MOCKUPS
   ============================================ */
.demo-berry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
}

/* Shared base for all 3 embeds */
.berry-embed {
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Outfit', 'gg sans', 'Noto Sans', sans-serif;
}

/* ---- 1. ROOM MANAGEMENT PANEL ---- */
.berry-room-panel {
  background: linear-gradient(145deg, #2b1b4e 0%, #3d1a6b 40%, #6b2fa0 100%);
  border: 1px solid rgba(160, 100, 255, 0.25);
  box-shadow: 0 12px 40px rgba(90, 0, 180, 0.35);
}

.berry-embed-inner {
  padding: 22px 20px 18px;
}

.berry-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.berry-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid rgba(180, 120, 255, 0.4);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.berry-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.berry-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}

.berry-subtitle-small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.berry-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
}

.berry-feature-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.berry-feature-tags span {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.5px;
}

.berry-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 14px 0;
}

.berry-btn-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.berry-btn {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: filter 0.2s, transform 0.15s;
  white-space: nowrap;
}

.berry-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.berry-btn-green {
  background: #3ba55c;
  color: white;
}

.berry-btn-red {
  background: #ed4245;
  color: white;
}

.berry-btn-blue {
  background: #5865f2;
  color: white;
}

.berry-footer-tag {
  text-align: right;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 10px 0 0;
}

/* ---- 2. ROOM CREATED EMBED ---- */
.berry-created-embed {
  background: #1e1f22;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.berry-created-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.berry-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}

.berry-created-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.berry-created-sub {
  font-size: 0.82rem;
  color: #b5bac1;
  margin-bottom: 16px;
  line-height: 1.5;
}

.berry-mention {
  color: #6ea6ff;
}

.berry-channel {
  color: #6ea6ff;
}

.berry-created-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.berry-table-col {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
}

.berry-table-head {
  font-size: 0.72rem;
  color: #949ba4;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.berry-id-badge {
  background: #5865f2;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

.berry-table-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.berry-table-val.mono {
  font-family: monospace;
  font-size: 0.7rem;
  word-break: break-all;
}

.berry-created-date {
  font-size: 0.7rem;
  color: #949ba4;
  text-align: right;
}

/* ---- 3. USER ADDED EMBED ---- */
.berry-added-embed {
  background: linear-gradient(160deg, #2b1b4e 0%, #3d1a6b 50%, #6b2fa0 100%);
  border: 1px solid rgba(160, 100, 255, 0.2);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(90, 0, 180, 0.3);
}

.berry-added-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(180, 120, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 16px;
}

.berry-added-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.berry-added-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.berry-added-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.5;
}

.berry-added-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  text-align: left;
}

.berry-status-dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 3px;
}

.berry-added-msg-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.berry-added-msg-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.berry-link {
  color: #6ea6ff;
  text-decoration: none;
}

.berry-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .demo-berry-row {
    grid-template-columns: 1fr;
  }

  .berry-created-table {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FLOATING DOCK NAV
   ============================================ */
.floating-dock {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 12px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dock-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, filter 0.2s;
  text-decoration: none;
  position: relative;
}

.dock-btn:hover {
  transform: scale(1.18) translateX(-4px);
}

/* Tooltip */
.dock-btn::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-family: 'Outfit', sans-serif;
}

.dock-btn:hover::before {
  opacity: 1;
}

/* Individual button colors */
.dock-discord {
  background: #5865f2;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

.dock-top {
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.dock-features {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.35);
}

.dock-team {
  background: #3d4451;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.dock-tos {
  background: #0ea5e9;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.dock-panel {
  background: #f59e0b;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.dock-discord:hover {
  box-shadow: 0 6px 22px rgba(88, 101, 242, 0.6);
}

.dock-top:hover {
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.5);
}

.dock-features:hover {
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.5);
}

.dock-team:hover {
  box-shadow: 0 6px 22px rgba(100, 116, 139, 0.4);
}

.dock-tos:hover {
  box-shadow: 0 6px 22px rgba(14, 165, 233, 0.5);
}

.dock-panel:hover {
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
}

@media (max-width: 640px) {
  .floating-dock {
    /* Collapse to bottom center on mobile */
    bottom: 16px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    border-radius: 18px;
    padding: 10px 12px;
    gap: 8px;
  }

  .dock-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .dock-btn::before {
    display: none;
  }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #060608;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-logo-ring {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f97316;
  border-right-color: rgba(249, 115, 22, 0.3);
  animation: loaderSpin 1s linear infinite;
}

.loader-ring-spin::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(239, 68, 68, 0.5);
  animation: loaderSpin 1.5s linear infinite reverse;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.05);
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(249, 115, 22, 0.6));
  }
}

.loader-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.loader-sub {
  color: #555;
  font-size: 0.82rem;
  margin: 0;
}

.loader-dots {
  display: flex;
  gap: 6px;
}

.loader-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
  animation: dotBounce 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
  background: #fb923c;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
  background: #ef4444;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* ============================================
   TOAST NOTIFICATION SYSTEM
   ============================================ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1814;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  pointer-events: all;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.toast.toast-show {
  transform: translateX(0);
  opacity: 1;
}

/* Color variants */
.toast-success {
  border-left: 3px solid #22c55e;
}

.toast-discord {
  border-left: 3px solid #5865f2;
}

.toast-info {
  border-left: 3px solid #3b82f6;
}

.toast-error {
  border-left: 3px solid #ef4444;
}

.toast-warning {
  border-left: 3px solid #f59e0b;
}

.toast-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.toast-success .toast-icon {
  color: #22c55e;
}

.toast-discord .toast-icon {
  color: #7289da;
}

.toast-info .toast-icon {
  color: #3b82f6;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-warning .toast-icon {
  color: #f59e0b;
}

.toast-msg {
  font-size: 0.88rem;
  color: #dbdee1;
  line-height: 1.4;
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 4px;
  font-size: 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #fff;
}

/* Progress bar */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 14px 14px;
}

.toast.toast-show .toast-progress {
  background: currentColor;
  animation: toastProgress var(--toast-dur, 4s) linear forwards;
}

.toast-success.toast-show .toast-progress {
  background: #22c55e;
  --toast-dur: 4s;
}

.toast-discord.toast-show .toast-progress {
  background: #5865f2;
  --toast-dur: 4s;
}

.toast-info.toast-show .toast-progress {
  background: #3b82f6;
  --toast-dur: 4s;
}

.toast-error.toast-show .toast-progress {
  background: #ef4444;
  --toast-dur: 4s;
}

.toast-warning.toast-show .toast-progress {
  background: #f59e0b;
  --toast-dur: 4s;
}

@keyframes toastProgress {
  from {
    transform: scaleX(1);
    transform-origin: left;
  }

  to {
    transform: scaleX(0);
    transform-origin: left;
  }
}

@media (max-width: 480px) {
  #toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast {
    min-width: unset;
    max-width: 100%;
  }
}

/* ============================================
   DISCORD POPUP WIDGET
   ============================================ */
.dc-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 360px;
  background:
    radial-gradient(120% 140% at 12% 4%, rgba(249, 115, 22, 0.16) 0%, transparent 45%),
    radial-gradient(120% 140% at 92% 100%, rgba(245, 158, 11, 0.12) 0%, transparent 48%),
    rgba(10, 11, 18, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 38px 28px 28px;
  text-align: center;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 42px rgba(249, 115, 22, 0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dc-popup.dc-popup-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dc-popup.dc-popup-hidden {
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  pointer-events: none;
}

.dc-popup-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9001;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff7c3b, #f97316 55%, #d95f0f);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(249, 115, 22, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dc-popup-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.58), 0 0 30px rgba(249, 115, 22, 0.42);
}

.dc-popup-launcher-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Close button */
.dc-popup-close {
  position: absolute;
  top: 14px;
  left: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #949ba4;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.dc-popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Floating emojis */
.dc-popup-emoji {
  position: absolute;
  font-size: 1.3rem;
  pointer-events: none;
  user-select: none;
  animation: emojiFloat 3s ease-in-out infinite;
}

.dc-emoji-1 {
  top: 38px;
  left: 18px;
  animation-delay: 0s;
}

.dc-emoji-2 {
  top: 50px;
  right: 14px;
  animation-delay: 0.8s;
  font-size: 1.5rem;
}

.dc-emoji-3 {
  bottom: 70px;
  right: 16px;
  animation-delay: 1.5s;
}

@keyframes emojiFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

/* Hex bot icon */
.dc-popup-hex {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  position: relative;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(135deg, #1e2030, #2d2f55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25), 0 6px 24px rgba(249, 115, 22, 0.3);
  animation: hexPulse 2.5s ease-in-out infinite;
}

@keyframes hexPulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25), 0 6px 24px rgba(249, 115, 22, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.14), 0 6px 30px rgba(249, 115, 22, 0.46);
  }
}

.dc-popup-hex-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

/* Text */
.dc-popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.dc-popup-desc {
  color: #949ba4;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* CTA Button */
.dc-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff7c3b, #f97316 60%, #ea580c);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.42);
}

.dc-popup-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff8a4e, #fb7a1b 60%, #ef6107);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.58);
}

@media (max-width: 480px) {
  .dc-popup-launcher {
    bottom: 16px;
    right: 16px;
  }

  .dc-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
}

/* ============================================================
   PANEL PREMIUM STYLES
============================================================ */

.guild-premium-card {
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.guild-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
  pointer-events: none;
}

.guild-premium-card:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.premium-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.5);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
  }
}