/*
Theme Name: Ogbugbu-Tech Traffic
Theme URI: https://ogbugbu-tech.com
Author: Ogbugbu-Tech
Author URI: https://ogbugbu-tech.com
Description: A complete website traffic generator platform with organic, social, referral, and direct traffic sourcing. Features geo-targeting by continent, campaign management, and full analytics dashboard.
Version: 1.0.0
License: GPL v2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ogbugbu-tech
Requires at least: 5.8
Requires PHP: 7.4
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a1a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; height: auto; }

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

.ott-glass {
  background: rgba(18, 18, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.ott-glass-hover {
  transition: all 0.3s ease;
}
.ott-glass-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.ott-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ott-btn-green {
  background: #16a34a;
  color: #fff;
}
.ott-btn-green:hover {
  background: #15803d;
  transform: scale(1.02);
}
.ott-btn-purple {
  background: #7c3aed;
  color: #fff;
}
.ott-btn-purple:hover {
  background: #6d28d9;
  transform: scale(1.02);
}
.ott-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
}
.ott-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}
.ott-btn-sm { padding: 8px 16px; font-size: 13px; }
.ott-btn-lg { padding: 16px 32px; font-size: 16px; }

.ott-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ott-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.ott-input:focus { border-color: #7c3aed; }
select.ott-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' fill-opacity='0.5' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
select.ott-input option { background: #12122a; color: #fff; }

.ott-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.ott-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7c3aed;
  cursor: pointer;
  border: 2px solid #fff;
}
.ott-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7c3aed;
  cursor: pointer;
  border: 2px solid #fff;
}

.ott-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  transition: all 0.3s ease;
}
.ott-navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ott-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ott-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.ott-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ott-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ott-nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: all 0.2s;
}
.ott-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.ott-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ott-mobile-toggle { display: none; background: none; border: none; color: #fff; }
.ott-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 26, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px;
}
.ott-mobile-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}
.ott-mobile-menu.open { display: block; }

.ott-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at center top, #1a1040 0%, #0a0a1a 60%);
  position: relative;
  overflow: hidden;
}
.ott-hero::before,
.ott-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.ott-hero::before {
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.15);
  top: 20%;
  left: 20%;
}
.ott-hero::after {
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.12);
  bottom: 20%;
  right: 20%;
}
.ott-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.ott-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #22c55e;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.ott-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ott-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 32px;
}
.ott-url-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.ott-url-prefix {
  padding: 0 14px;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.ott-url-bar input {
  flex: 1;
  border: none;
  background: transparent;
  color: #111;
  padding: 12px 8px;
  font-size: 14px;
  outline: none;
}
.ott-url-bar input::placeholder { color: #bbb; }
.ott-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
}
.ott-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.ott-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ott-section { padding: 80px 24px; }
.ott-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.ott-section-title h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}
.ott-section-title p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.ott-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ott-step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.ott-step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.ott-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto;
  font-size: 28px;
}
.ott-step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ott-step-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.ott-step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 500;
}

.ott-stats {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.ott-stats::before,
.ott-stats::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.ott-stats::before { top: 0; }
.ott-stats::after { bottom: 0; }
.ott-stats strong {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.ott-features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.ott-feature-card { padding: 24px; }
.ott-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 6px;
}
.ott-feature-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.ott-testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.ott-rating-box h2 { font-size: 36px; margin-bottom: 12px; }
.ott-rating-box .score {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}
.ott-stars { display: flex; gap: 2px; margin: 8px 0 16px; }
.ott-stars svg { fill: #fbbf24; color: #fbbf24; }
.ott-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ott-testimonial { padding: 16px; }
.ott-testimonial-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ott-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.ott-testimonial h4 { font-size: 13px; font-weight: 600; }
.ott-testimonial .role { font-size: 11px; color: rgba(255, 255, 255, 0.5); }
.ott-testimonial .stars { margin-bottom: 8px; }
.ott-testimonial .stars svg { width: 12px; height: 12px; }
.ott-testimonial q {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  display: block;
}

.ott-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.ott-pricing-card { padding: 28px; }
.ott-pricing-card .badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.ott-pricing-card h3 { font-size: 20px; margin-bottom: 16px; }
.ott-pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.ott-pricing-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.ott-pricing-card .unit-price {
  font-size: 13px;
  color: #22c55e;
  font-weight: 500;
  margin: 4px 0 20px;
}
.ott-pricing-features {
  max-width: 700px;
  margin: 24px auto 0;
  padding: 24px;
}
.ott-pricing-features h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.ott-pricing-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}
.ott-pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.ott-pricing-features li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.ott-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ott-faq-item { overflow: hidden; }
.ott-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.ott-faq-item summary::-webkit-details-marker { display: none; }
.ott-faq-item summary svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.ott-faq-item[open] summary svg { transform: rotate(180deg); }
.ott-faq-item .answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.ott-cta {
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.ott-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15), transparent 70%);
  pointer-events: none;
}

.ott-footer {
  background: #080818;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 24px 30px;
}
.ott-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.ott-footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.ott-footer a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.ott-footer a:hover { color: rgba(255, 255, 255, 0.8); }
.ott-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Dashboard */
.ott-dashboard {
  padding: 96px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.ott-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.ott-dashboard-header h1 { font-size: 24px; }
.ott-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.ott-stat-card { padding: 20px; }
.ott-stat-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ott-stat-card .value {
  font-size: 24px;
  font-weight: 700;
}
.ott-stat-card .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ott-campaigns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ott-campaigns-header h2 { font-size: 18px; }
.ott-empty-state {
  text-align: center;
  padding: 60px 24px;
}
.ott-empty-state .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ott-campaign-item {
  padding: 20px;
  margin-bottom: 12px;
}
.ott-campaign-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.ott-campaign-info h3 { font-size: 15px; font-weight: 600; }
.ott-campaign-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.ott-status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 8px;
}
.ott-status-pending { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }
.ott-status-running { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.ott-status-paused { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.ott-status-completed { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.ott-campaign-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ott-campaign-actions form { display: inline; }
.ott-campaign-actions button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}
.ott-campaign-actions button:hover { background: rgba(255, 255, 255, 0.1); }
.ott-campaign-actions .btn-play { color: #4ade80; }
.ott-campaign-actions .btn-pause { color: #facc15; }
.ott-campaign-actions .btn-delete { color: #f87171; }
.ott-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}
.ott-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.ott-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ott-modal {
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
}
.ott-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.ott-modal-header h2 { font-size: 20px; }
.ott-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ott-modal-close:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.ott-stepper-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.ott-stepper-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.ott-stepper-step.active { background: #7c3aed; color: #fff; }
.ott-stepper-step.done { background: #22c55e; color: #fff; }
.ott-stepper-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
.ott-stepper-line.done { background: #22c55e; }

.ott-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
}
.ott-source-item {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  color: #fff;
}
.ott-source-item:hover { border-color: rgba(255, 255, 255, 0.15); }
.ott-source-item.selected {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}
.ott-source-item .icon { font-size: 24px; margin-bottom: 4px; display: block; }
.ott-source-item .name { font-size: 13px; font-weight: 500; }

.ott-continent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ott-continent-item {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  color: #fff;
}
.ott-continent-item:hover { border-color: rgba(255, 255, 255, 0.15); }
.ott-continent-item.selected {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}
.ott-continent-item .name { font-size: 13px; font-weight: 500; }
.ott-continent-item .count { font-size: 11px; color: rgba(255, 255, 255, 0.4); }

.ott-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  padding: 12px;
}
.ott-country-item {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}
.ott-country-item:hover { background: rgba(255, 255, 255, 0.05); }
.ott-country-item.selected {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  font-weight: 500;
}

.ott-type-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.ott-type-tab {
  padding: 14px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  color: #fff;
}
.ott-type-tab:hover { border-color: rgba(255, 255, 255, 0.15); }
.ott-type-tab.active {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}
.ott-type-tab svg {
  display: block;
  margin: 0 auto 6px;
  color: rgba(255, 255, 255, 0.4);
}
.ott-type-tab.active svg { color: #7c3aed; }
.ott-type-tab .label { font-size: 12px; font-weight: 500; }

.ott-form-group { margin-bottom: 16px; }
.ott-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.ott-form-group .hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.ott-form-group .error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
}

.ott-range-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.ott-range-display .value {
  font-size: 16px;
  font-weight: 700;
  color: #7c3aed;
}

.ott-summary {
  padding: 16px;
  margin-top: 16px;
}
.ott-summary h4 { font-size: 14px; margin-bottom: 10px; }
.ott-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 12px;
}
.ott-summary-row .k { color: rgba(255, 255, 255, 0.5); }
.ott-summary-row .v { color: #fff; }

.ott-notice {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
}
.ott-notice-success { background: rgba(22, 163, 74, 0.15); color: #4ade80; border: 1px solid rgba(22, 163, 74, 0.2); }
.ott-notice-error { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }

.form-step { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateX(10px);} to { opacity:1; transform: translateX(0);} }

/* ===== REGISTRATION FORM ===== */
.ott-register-form {
  max-width: 420px;
  margin: 0 auto;
}
.ott-register-form .ott-form-group {
  margin-bottom: 16px;
}
.ott-register-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.ott-register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: radial-gradient(ellipse at center, #1a1040 0%, #0a0a1a 70%);
}
.ott-register-box {
  width: 100%;
  max-width: 460px;
}
.ott-register-box h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.ott-register-box .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ===== MULTI-SELECT CHECKBOXES ===== */
.ott-continent-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ott-check-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s;
}
.ott-check-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.ott-check-card input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}
.ott-country-panel label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

@media (max-width: 1024px) {
  .ott-features-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ott-testimonials-layout { grid-template-columns: 1fr; }
  .ott-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .ott-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .ott-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ott-nav-links { display: none; }
  .ott-mobile-toggle { display: block; }
  .ott-hero { padding-top: 100px; min-height: auto; }
  .ott-features-grid { grid-template-columns: 1fr; }
  .ott-steps-grid { grid-template-columns: 1fr; }
  .ott-features-grid-3 { grid-template-columns: 1fr; }
  .ott-testimonials-grid { grid-template-columns: 1fr; }
  .ott-pricing-grid { grid-template-columns: 1fr; }
  .ott-pricing-features ul { grid-template-columns: 1fr; }
  .ott-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ott-stats-row { grid-template-columns: repeat(2, 1fr); }
  .ott-type-tabs { grid-template-columns: repeat(2, 1fr); }
  .ott-source-grid { grid-template-columns: repeat(2, 1fr); }
  .ott-continent-grid { grid-template-columns: repeat(2, 1fr); }
  .ott-campaign-top { flex-direction: column; }
}
