/* 
   POPPO TOP Agency Landing Page CSS
   Style system: Dark Premium Neon, Glassmorphism, Responsive CSS Grid
*/

/* Reset & Variables */
:root {
  /* Color Palette */
  --bg-primary: #0A0B0D;
  --bg-secondary: #13151A;
  --bg-tertiary: #1C1E24;
  --accent-magenta: #FF007A;
  --accent-violet: #8A2BE2;
  --text-white: #FFFFFF;
  --text-gray: #A0A5B1;
  --text-dark: #1F2229;
  --gold: #FFD700;
  --success: #00E676;
  --error: #FF1744;
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(25, 28, 36, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.highlight {
  color: var(--accent-magenta);
}

.gradient-text {
  background: linear-gradient(135deg, #FF007A 0%, #FF8A00 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  font-weight: 800;
  filter: drop-shadow(0 2px 8px rgba(255, 0, 122, 0.5));
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-2-equal {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .grid-2-equal {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 0, 122, 0.15);
  box-shadow: 0 8px 32px 0 rgba(255, 0, 122, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  border-color: rgba(255, 0, 122, 0.5);
  box-shadow: 0 12px 40px 0 rgba(255, 0, 122, 0.25), 0 0 15px rgba(255, 0, 122, 0.15);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 16px;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(255, 0, 122, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 0, 122, 0.5);
  background: linear-gradient(135deg, #ff1a8c 0%, #993dff 100%);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--accent-magenta);
}

.btn-outline:hover {
  background-color: rgba(255, 0, 122, 0.1);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.header-cta {
  white-space: nowrap;
}

.w-full {
  width: 100%;
}

.icon-svg {
  width: 20px;
  height: 20px;
}

/* Header */
.main-header {
  background-color: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-visual {
    order: -1;
  }
}

.top-tag {
  background-color: rgba(255, 0, 122, 0.1);
  border: 1px solid rgba(255, 0, 122, 0.2);
  color: var(--accent-magenta);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 38px;
  }
  .header-badge {
    display: none; /* Hide badge on mobile to prevent overlapping */
  }
  .header-cta {
    font-size: 13px !important;
    padding: 6px 14px !important;
  }
  .live-user {
    top: 12px !important;
    left: 12px !important;
    padding: 4px 8px !important;
    max-width: 65% !important;
    gap: 6px !important;
  }
  .user-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
  }
  .user-name {
    font-size: 10px !important;
  }
  .user-subs {
    font-size: 8px !important;
  }
  .live-badge {
    top: 12px !important;
    right: 12px !important;
    padding: 2px 8px !important;
    font-size: 9px !important;
  }
  .live-points {
    bottom: 70px !important;
    right: 12px !important;
    padding: 4px 8px !important;
  }
  .points-val {
    font-size: 11px !important;
  }
  .points-icon {
    font-size: 12px !important;
  }
  .live-stats {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    padding-top: 8px !important;
  }
}

.hero-subtitle {
  color: #f1f1f4;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .hero-subtitle {
    margin: 0 auto 32px auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* Agency ID Card */
.agency-id-card {
  display: flex;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 8px 8px 8px 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  max-width: 500px;
}

@media (max-width: 992px) {
  .agency-id-card {
    margin: 0 auto 32px auto;
  }
}

@media (max-width: 480px) {
  .agency-id-card {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    width: 100%;
  }
}

.agency-id-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.id-label {
  font-size: 12px;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.id-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.btn-copy {
  padding: 12px 20px;
  font-size: 14px;
}

.copy-alert {
  background-color: var(--success);
  color: var(--bg-primary);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 24px;
  display: none;
  max-width: 500px;
  text-align: center;
}

@media (max-width: 992px) {
  .copy-alert {
    margin: 0 auto 24px auto;
  }
}

.live-card {
  width: 100%;
  max-width: 440px;
  height: 550px;
  background-color: #0a0b0d;
  border: 3px solid rgba(255, 0, 122, 0.6);
  box-shadow: 0 20px 50px rgba(255, 0, 122, 0.45), 0 0 35px rgba(255, 0, 122, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.live-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0.15) 0%, rgba(10, 11, 13, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.live-card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.live-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-magenta);
  color: var(--text-white);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.1em;
  box-shadow: 0 0 15px var(--accent-magenta);
  z-index: 2;
}

.live-user {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(10, 11, 13, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 30px;
  position: absolute;
  top: 16px;
  left: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.user-avatar {
  font-size: 16px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.user-name {
  font-weight: 700;
  font-size: 12px;
}

.user-subs {
  font-size: 9px;
  color: var(--text-gray);
}

.live-points {
  position: absolute;
  bottom: 80px;
  right: 16px;
  background-color: rgba(10, 11, 13, 0.65);
  border: 1px solid rgba(255, 0, 122, 0.4);
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.25);
  z-index: 2;
}

.points-icon {
  font-size: 16px;
}

.points-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
}

.live-stats {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-magenta);
}

.stat-label {
  font-size: 11px;
  color: var(--text-gray);
}

/* Sections General */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 30px;
  }
}

.section-header p {
  color: var(--text-gray);
  font-size: 16px;
}

.sub-heading {
  display: block;
  color: var(--accent-magenta);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Achievements / Features */
.achievements-section {
  background-color: var(--bg-secondary);
}

.feat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feat-icon {
  font-size: 40px;
  margin-bottom: 20px;
  width: 72px;
  height: 72px;
  background-color: rgba(255, 0, 122, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 122, 0.15);
}

.feat-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feat-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Calculator Section */
.calculator-section {
  position: relative;
}

.calculator-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.calc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.align-left {
  text-align: left;
  margin-left: 0;
}

.calc-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.calc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.calc-info-icon {
  color: var(--accent-magenta);
  font-weight: bold;
}

/* Calculator Widget */
.calc-card {
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.calc-group {
  margin-bottom: 24px;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
}

.calc-val {
  color: var(--accent-magenta);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.result-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-row span:first-child {
  color: var(--text-gray);
  font-size: 15px;
}

.result-value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.accent-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--success);
  text-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

.calc-note {
  font-size: 12px;
  color: var(--text-gray);
  text-align: center;
}

/* Salary Table Section */
.salary-table-section {
  background-color: var(--bg-secondary);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.salary-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.salary-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  font-weight: 600;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
}

.salary-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 15px;
}

.salary-table tr:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

.lvl-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
}

.lvl-0 {
  background-color: rgba(160, 165, 177, 0.15);
  color: var(--text-gray);
}

.lvl-1 {
  background-color: rgba(138, 43, 226, 0.15);
  color: #b366ff;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.lvl-3 {
  background-color: rgba(255, 0, 122, 0.15);
  color: var(--accent-magenta);
  border: 1px solid rgba(255, 0, 122, 0.2);
}

.lvl-top {
  background-color: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: pulse 2s infinite;
}

.info-alert {
  background-color: rgba(255, 23, 68, 0.05);
  border-left: 4px solid var(--error);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}

/* Steps Section */
.steps-grid {
  position: relative;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: transform var(--transition-normal);
}

.step-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-num-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.3);
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.5;
}

/* Sub-Agents Section */
.subagents-section {
  background-color: var(--bg-secondary);
}

.subagent-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(25, 28, 36, 0.9) 0%, rgba(13, 14, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .subagent-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
}

.subagent-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.subagent-content p {
  color: var(--text-gray);
  margin-bottom: 24px;
  max-width: 600px;
}

.subagent-illustration {
  font-size: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
}

/* Application Form Section */
.form-section {
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 0, 122, 0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-gray);
  font-size: 15px;
}

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

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
}

.form-group input, 
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--accent-magenta);
  box-shadow: 0 0 10px rgba(255, 0, 122, 0.2);
}

.form-note {
  font-size: 11px;
  color: var(--text-gray);
}

.form-status {
  margin-top: 20px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.status-success {
  background-color: rgba(0, 230, 118, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.status-error {
  background-color: rgba(255, 23, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(255, 23, 68, 0.2);
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--bg-secondary);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-magenta);
}

.faq-icon {
  font-size: 20px;
  color: var(--text-gray);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-magenta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Floating Contacts Widget */
.floating-contacts {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.contact-btn:hover {
  transform: scale(1.1);
}

.tg-btn {
  background-color: #0088cc;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.tg-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.wa-btn {
  background-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.wa-btn:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
.main-footer {
  background-color: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 32px 0;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .logo-text {
  font-size: 26px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-desc {
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 450px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--accent-magenta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 32px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-gray);
  font-size: 12px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* Coins Purchase Section */
.coins-section {
  position: relative;
  background-color: var(--bg-primary);
}

.coins-container {
  align-items: stretch;
}

/* Neon Price Board */
.neon-price-board {
  background: linear-gradient(135deg, rgba(20, 10, 35, 0.8) 0%, rgba(10, 5, 20, 0.95) 100%);
  border: 2px solid var(--accent-magenta);
  box-shadow: 0 0 30px rgba(255, 0, 122, 0.25), inset 0 0 15px rgba(255, 0, 122, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  margin-bottom: 0;
}

.neon-price-board::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.price-board-header {
  text-align: center;
  z-index: 1;
  position: relative;
}

.brand-glow {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(255, 0, 122, 0.8), 0 0 20px rgba(255, 0, 122, 0.4);
  margin-bottom: 4px;
}

.board-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 0.2em;
  border-top: 1.5px solid rgba(255, 0, 122, 0.3);
  border-bottom: 1.5px solid rgba(255, 0, 122, 0.3);
  display: inline-block;
  padding: 6px 16px;
  text-transform: uppercase;
}

.price-board-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  position: relative;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition-normal);
}

.price-row:hover {
  background: rgba(255, 0, 122, 0.04);
  border-color: rgba(255, 0, 122, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.2);
  transform: scale(1.02);
}

.price-usd {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 80px;
}

.price-usd .currency-symbol {
  color: var(--accent-magenta);
  font-weight: 700;
  font-size: 16px;
}

.price-usd .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
}

.price-usd .currency {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
}

.price-arrow {
  color: var(--accent-magenta);
  font-size: 20px;
  animation: pulseArrow 1.5s infinite alternate;
}

.price-coins {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
}

.price-coins .coin-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 0, 122, 0.4);
}

.price-coins .coin-label {
  font-size: 10px;
  color: var(--accent-magenta);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-visual {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}

.price-visual .row-emoji {
  transition: transform var(--transition-normal);
}

.price-row:hover .row-emoji {
  transform: rotate(15deg) scale(1.15);
}

/* Highlight row styling ($50) */
.highlight-row {
  border-color: rgba(255, 0, 122, 0.3);
  background: rgba(255, 0, 122, 0.02);
}

.highlight-row:hover {
  background: rgba(255, 0, 122, 0.08);
  border-color: rgba(255, 0, 122, 0.6);
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

/* Super row styling ($100) */
.super-row {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.02);
}

.super-row:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.super-row .price-usd .currency-symbol,
.super-row .price-coins .coin-label,
.super-row .price-arrow {
  color: var(--gold);
}

.super-row .price-coins .coin-amount {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

@keyframes pulseArrow {
  0% { transform: translateX(0); opacity: 0.6; }
  100% { transform: translateX(4px); opacity: 1; }
}

@media (max-width: 480px) {
  .price-usd .amount { font-size: 22px; }
  .price-coins .coin-amount { font-size: 18px; }
  .price-visual { font-size: 22px; width: 36px; }
  .price-row { padding: 12px 14px; }
}

.coins-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-feat-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 215, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
  color: var(--gold);
}

.c-feat h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-white);
}

.c-feat p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.coins-calc-card {
  border: 1px solid rgba(255, 215, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coins-calc-card h3 {
  margin-top: 0;
}

.coins-rates-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rate-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border: 1px solid rgba(255, 0, 122, 0.15);
  background: rgba(255, 0, 122, 0.02);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  animation: neonPulse 3s infinite alternate;
}

.rate-summary-item:nth-child(2) {
  animation-delay: 1s;
}

.rate-summary-item:nth-child(3) {
  animation-delay: 2s;
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.02);
  animation: goldPulse 3s infinite alternate;
}

.rate-summary-item strong {
  color: var(--accent-magenta);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(255, 0, 122, 0.5);
}

.rate-summary-item:nth-child(3) strong {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Burning neon pulse animations */
@keyframes neonPulse {
  0% {
    border-color: rgba(255, 0, 122, 0.15);
    box-shadow: 0 0 5px rgba(255, 0, 122, 0.05);
  }
  100% {
    border-color: rgba(255, 0, 122, 0.6);
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.25), inset 0 0 8px rgba(255, 0, 122, 0.05);
  }
}

@keyframes goldPulse {
  0% {
    border-color: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.05);
  }
  100% {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25), inset 0 0 8px rgba(255, 215, 0, 0.05);
  }
}

.calc-inputs-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.coins-swap-arrow {
  align-self: center;
  font-size: 24px;
  color: var(--text-gray);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}

.coins-swap-arrow:hover {
  color: var(--gold);
}

.coins-calc-result-info {
  font-size: 13px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

#current-exchange-rate {
  color: var(--gold);
  font-weight: 700;
}

#btn-buy-coins-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  font-weight: 700;
}

#btn-buy-coins-cta:hover {
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffe033 0%, #ffa500 100%);
}

.subagent-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 380px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(255, 0, 122, 0.4);
  border: 2px solid rgba(255, 0, 122, 0.3);
  object-fit: cover;
}

/* Floating background particles */
.floating-bg-particle {
  position: absolute;
  font-size: 32px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(20deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WebGL Canvas */
#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto; /* let it capture mouse moves for particle interaction */
}

.hero-container {
  position: relative;
  z-index: 2;
  pointer-events: none; /* let mouse pass through container */
}

.hero-content, .hero-visual {
  pointer-events: auto; /* make sure buttons and interactive card are clickable! */
}

/* Quiz Styles */
.quiz-container {
  margin-top: 24px;
  position: relative;
}

.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
}

.quiz-steps-info {
  font-size: 13px;
  color: var(--text-gray);
  text-align: right;
  margin-bottom: 24px;
  font-weight: 500;
}

.quiz-step {
  display: none;
  animation: quizFadeIn 0.4s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-step-desc {
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.quiz-opt-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
}

.quiz-opt-card input[type="radio"] {
  display: none;
}

.quiz-opt-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 0, 122, 0.3);
}

/* Checked option state */
.quiz-opt-card:has(input[type="radio"]:checked) {
  background-color: rgba(255, 0, 122, 0.05);
  border-color: var(--accent-magenta);
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.15);
}

.opt-icon {
  font-size: 32px;
}

.opt-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
}

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

.form-select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  width: 100%;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.form-select:focus {
  border-color: var(--accent-magenta);
}

.form-select option {
  background-color: var(--bg-secondary);
  color: var(--text-white);
}

/* Success Step */
.text-center {
  text-align: center;
}

.quiz-success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: quizBounce 2s infinite;
}

.quiz-congrats-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.quiz-summary-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.quiz-summary-card p {
  margin-bottom: 12px;
  font-size: 14px;
}

.agency-instructions {
  color: var(--text-gray);
  margin-top: 16px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.agency-id-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-magenta);
  text-align: center;
  background-color: rgba(255, 0, 122, 0.1);
  border: 2px dashed rgba(255, 0, 122, 0.3);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.agency-id-pill:hover {
  background-color: rgba(255, 0, 122, 0.15);
  transform: scale(1.02);
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.quiz-navigation .btn {
  flex: 1;
}

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

@keyframes quizBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating gift elements */
.floating-gift {
  position: fixed;
  pointer-events: none;
  z-index: 99;
  user-select: none;
  will-change: transform, opacity;
}

@media (max-width: 480px) {
  .live-card {
    height: 460px;
  }
}

/* Horizontal Features Row */
.coins-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  width: 100%;
}

@media (max-width: 768px) {
  .coins-features-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.gallery-grid {
  gap: 24px;
}

.host-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 0, 122, 0.15);
  box-shadow: 0 8px 32px rgba(255, 0, 122, 0.05);
}

.host-card:hover {
  border-color: rgba(255, 0, 122, 0.5);
  box-shadow: 0 12px 40px rgba(255, 0, 122, 0.25), 0 0 15px rgba(255, 0, 122, 0.15);
}

.host-img-container {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  transition: transform var(--transition-normal);
}

.host-card:hover .host-img-container {
  transform: scale(1.03);
}

.host-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--accent-magenta);
  color: var(--text-white);
  font-weight: 800;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px var(--accent-magenta);
  animation: pulse 1.5s infinite alternate;
}

.host-flag-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.host-card-info {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 11, 13, 0.4);
}

.host-points-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.host-lvl-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

/* Virtual Gifts Section */
.gifts-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(25, 28, 36, 0.5) 100%);
}

.gifts-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.gifts-grid {
  align-items: center;
  gap: 60px;
}

.gifts-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gifts-content p {
  color: var(--text-gray);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.gift-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gift-item-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.gift-item-card:hover {
  transform: translateX(5px);
  background: rgba(255, 0, 122, 0.03);
  border-color: rgba(255, 0, 122, 0.15);
}

.gift-item-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(255, 0, 122, 0.3));
}

.gift-item-details h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-white);
}

.gift-item-details p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

.gifts-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gifts-image-wrapper::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.15) 0%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
}

.gifts-mockup-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

/* App Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(25, 28, 36, 0.5) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.feature-text-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-text-block:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 122, 0.2);
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.05);
}

.feat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  margin-bottom: 20px;
}

.feature-text-block h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.feature-text-block p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.features-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.features-image-wrapper::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
}

.features-mockup-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite alternate;
}

@media (max-width: 992px) {
  .left-block {
    order: 2;
  }
  .features-image-wrapper {
    order: 1;
  }
  .right-block {
    order: 3;
  }
}
                        