/**
 * Adviral Creator Landing Page Styles
 * Modern dark theme with neon accents
 * @version 1.0.0
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg: #050310;
  --bg-alt: #07061a;
  --panel: #0c0a20;
  --accent: #ff4b9f;
  --accent2: #3cf3ff;
  --accent3: #ffe94b;
  --text-main: #f5f5ff;
  --text-muted: #8a8ab8;
  --border: rgba(255, 255, 255, 0.16);
  --radius: 18px;
  --container-width: 1120px;
}

/* ============================================
   Reset & Base
   ============================================ */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 75, 159, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(60, 243, 255, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 233, 75, 0.12), transparent 55%),
    var(--bg);
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body { display: flex; flex-direction: column; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Header
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(5,3,16,0.9), rgba(5,3,16,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ============================================
   Burger Menu
   ============================================ */
.burger-menu {
  position: relative;
  margin-left: 8px;
}

.burger-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(255,75,159,0.15), rgba(60,243,255,0.15));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-main);
}

.burger-btn:hover {
  background: linear-gradient(135deg, rgba(255,75,159,0.25), rgba(60,243,255,0.25));
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 20px rgba(255,75,159,0.3), 0 0 20px rgba(60,243,255,0.2);
  transform: scale(1.05);
}

.burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}

.burger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-btn.active .burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.active .burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  background: rgba(12, 10, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.5),
    0 0 30px rgba(255,75,159,0.1),
    0 0 30px rgba(60,243,255,0.1);
  z-index: 100;
}

.burger-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.burger-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-muted);
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.burger-dropdown a:hover {
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(255,75,159,0.12), rgba(60,243,255,0.12));
}

.dropdown-icon {
  font-size: 18px;
  filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(300%) brightness(0.9);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.burger-dropdown a:hover .dropdown-icon {
  filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(400%) brightness(1.1);
  opacity: 1;
}

.burger-dropdown .burger-login,
.burger-dropdown .burger-divider {
  display: none !important;
}

.burger-login {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(255, 75, 159, 0.15));
  font-weight: 600;
}

.burger-login:hover {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(255, 75, 159, 0.3)) !important;
}

.burger-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 4px 0;
}

/* ============================================
   Logo
   ============================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 48px;
  background: url('../images/logo-icon.png') no-repeat left center;
  background-size: contain;
}

.logo-text-main {
  font-family: "Press Start 2P", system-ui;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.logo-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-sub {
  margin-top: 1px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   Navigation Auth
   ============================================ */
.nav-auth {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.nav-auth .btn-primary {
  box-shadow:
    0 0 10px rgba(255,75,159,0.4),
    0 0 14px rgba(60,243,255,0.3);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  border-radius: 999px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-main);
  font-size: 19px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 20px rgba(255,75,159,0.7),
    0 0 26px rgba(60,243,255,0.5);
}

.btn-icon {
  filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(300%) brightness(0.9);
  transition: filter 0.2s ease;
}

.btn:hover .btn-icon {
  filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(400%) brightness(1.1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 28px rgba(255,75,159,0.9),
    0 0 34px rgba(60,243,255,0.7);
}

.btn-ghost {
  background: rgba(8,8,26,0.7);
}

.btn-ghost:hover {
  border-color: var(--accent2);
  background: rgba(60,243,255,0.06);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 22px;
}

/* ============================================
   Pixel Decoration
   ============================================ */
.pixel-border {
  position: relative;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
}

.pixel-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.08);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 40px 0 52px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

.hero-inner > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent2);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(40px, 5.75vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 23px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-actions-center {
  justify-content: center;
}

.hero-note {
  font-size: 18px;
  color: var(--text-muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  font-size: 16px;
}

.hero-tag {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,8,26,0.9);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 10px rgba(255,75,159,0.9);
}

/* ============================================
   Phone Image
   ============================================ */
.hero-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone-wrapper {
  position: relative;
  display: inline-block;
}

.hero-phone-img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 0 40px rgba(255,75,159,0.4))
          drop-shadow(0 0 60px rgba(60,243,255,0.3));
}

.hero-phone-banner {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 97%;
  border-radius: 35px;
  overflow: hidden;
  pointer-events: none;
}

.hero-phone-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Phone Video Controls */
.phone-video-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.phone-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,13,35,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-user-select: none;
}

.phone-control-btn:focus,
.phone-control-btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.phone-control-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(138,43,226,0.5) !important;
}

.phone-control-btn * {
  outline: none !important;
  pointer-events: none;
}

.phone-control-btn:hover {
  background: rgba(138,43,226,0.3);
  border-color: var(--accent2);
  transform: scale(1.1);
}

.phone-control-btn svg {
  width: 20px;
  height: 20px;
}

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

/* ============================================
   Sections
   ============================================ */
section {
  padding: 44px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent2);
  margin-bottom: 12px;
}

.section-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
}

/* ============================================
   How It Works
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.how-card {
  border-radius: var(--radius);
  background: rgba(8,8,26,0.9);
  border: 1px solid var(--border);
  padding: 14px 12px 16px;
  position: relative;
  overflow: hidden;
}

.how-step {
  font-family: "Press Start 2P";
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 14px;
}

.how-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-text {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-index {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-family: "Press Start 2P";
  font-size: 15px;
  color: rgba(255,255,255,0.16);
}

/* ============================================
   Why Section (Benefits)
   ============================================ */
.why-grid {
  display: block;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  counter-reset: benefit-counter;
}

.why-point {
  border-radius: 16px;
  background: rgba(15,13,35,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  font-size: 19px;
  color: var(--text-muted);
  display: flex;
  gap: 20px;
  align-items: center;
  counter-increment: benefit-counter;
  transition: all 0.3s ease;
}

.why-point:hover {
  border-color: rgba(255,75,159,0.2);
  transform: translateX(6px);
}

.why-point::before {
  content: counter(benefit-counter);
  font-family: "Press Start 2P";
  font-size: 48px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  opacity: 0.9;
}

.why-point-content {
  flex: 1;
}

.why-point-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.why-box {
  border-radius: var(--radius);
  background: rgba(8,8,26,0.9);
  border: 1px dashed rgba(255,255,255,0.3);
  padding: 18px 16px 20px;
  font-size: 19px;
  color: var(--text-muted);
}

/* ============================================
   Offer Types
   ============================================ */
.offer-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.offer-type-card {
  border-radius: 20px;
  background: rgba(15,13,35,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-type-card:hover {
  border-color: rgba(255,75,159,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.offer-type-number {
  font-family: "Press Start 2P", monospace;
  font-size: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.offer-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-type-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.offer-type-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.offer-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.offer-type-list li {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.offer-type-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.offer-type-note {
  background: linear-gradient(135deg, rgba(138,43,226,0.15), rgba(255,75,159,0.15));
  border-left: 3px solid var(--accent2);
  border-radius: 8px;
  padding: 16px;
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================================
   Formats Grid
   ============================================ */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.format-card {
  border-radius: 16px;
  background: rgba(15,13,35,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,75,159,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.format-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  background: rgba(20,18,45,0.8);
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(20,18,45,0.8), rgba(20,18,45,0.8)), 
                    linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.format-icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
  flex-shrink: 0;
}

.format-head {
  margin-bottom: 10px;
}

.format-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.format-tag {
  font-family: "Press Start 2P";
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
  position: absolute;
  top: 12px;
  right: 14px;
}

.format-card-desc {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ============================================
   Earnings Table
   ============================================ */
.earn-grid {
  display: block;
  margin-top: 8px;
}

.earn-table {
  border-radius: var(--radius);
  background: rgba(60,60,90,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  font-size: 19px;
}

.earn-row {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1fr 0.8fr 0.8fr;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.earn-row.header {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  background: rgba(70,70,100,0.6);
}

.earn-row:last-child { border-bottom: none; }

.earn-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.earn-row:not(.header) span:nth-child(5) {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent2);
}

.badge {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.earn-note {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text-muted);
}

.earn-box {
  border-radius: var(--radius);
  background: rgba(8,8,26,0.96);
  border: 1px solid var(--border);
  padding: 16px 20px 18px;
  font-size: 19px;
  color: var(--text-muted);
  margin-top: 20px;
}

.earn-box-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.earn-box ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.faq-item {
  border-radius: var(--radius);
  background: rgba(8,8,26,0.96);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  padding: 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}

.faq-toggle {
  font-size: 25px;
  color: var(--accent2);
  margin-left: 10px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out;
  padding: 0 16px;
  font-size: 19px;
  color: var(--text-muted);
}

.faq-a-inner { padding-bottom: 12px; }

.faq-item.open .faq-a { max-height: 220px; }

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 40px 0 52px;
}

.cta-box {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 0 0, rgba(60,243,255,0.3), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255,75,159,0.3), transparent 60%),
    rgba(5,3,20,0.98);
  text-align: center;
  padding: 26px 18px 28px;
  box-shadow:
    0 0 40px rgba(0,0,0,0.95),
    0 0 40px rgba(60,243,255,0.4);
}

.cta-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 21px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 24px;
}

.cta-note {
  margin-top: 14px;
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 20px 0 28px;
  font-size: 16px;
  color: var(--text-muted);
  background: #050310;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a { 
  color: var(--text-muted); 
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 992px) {
  .offer-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  
  .hero-inner {
    grid-template-columns: minmax(0,1fr);
  }
  
  .hero {
    padding-top: 32px;
  }
  
  .how-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  
  .why-point {
    padding: 16px 18px;
    gap: 16px;
  }
  
  .why-point::before {
    min-width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .earn-grid {
    overflow-x: auto;
  }
  
  .earn-table {
    min-width: 600px;
  }
}

/* ============================================
   Responsive - Mobile Table
   ============================================ */
@media (max-width: 700px) {
  .earn-grid {
    overflow-x: visible;
  }
  
  .earn-table {
    min-width: auto;
    background: transparent;
    border: none;
  }
  
  .earn-row.header {
    display: none;
  }
  
  .earn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(60,60,90,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
  }
  
  .earn-row:last-child {
    margin-bottom: 0;
  }
  
  .earn-row span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
  }
  
  .earn-row span::before {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  .earn-row span:nth-child(1)::before { content: "Offer"; }
  .earn-row span:nth-child(2)::before { content: "Type"; }
  .earn-row span:nth-child(3)::before { content: "Topics"; }
  .earn-row span:nth-child(4)::before { content: "Views"; }
  .earn-row span:nth-child(5)::before { content: "Payout"; }
  
  .earn-row span:nth-child(5) {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent2);
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
  .nav {
    height: auto;
    min-height: 60px;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  
  .logo-text-main {
    font-size: 18px;
  }
  
  .logo-icon {
    width: 34px;
    height: 38px;
  }
  
  .nav-auth {
    gap: 6px;
  }
  
  .nav-auth .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .burger-btn {
    width: 36px;
    height: 36px;
  }
  
  .burger-dropdown {
    right: 0;
    left: auto;
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .how-grid {
    grid-template-columns: minmax(0,1fr);
  }
  
  .formats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .format-card {
    padding: 16px;
  }
  
  .format-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 12px;
  }
  
  .format-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Responsive - Small Mobile
   ============================================ */
@media (max-width: 480px) {
  .nav {
    gap: 8px;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo-text-main {
    font-size: 14px;
  }
  
  .logo-text-sub {
    font-size: 7px;
    letter-spacing: 0.25em;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .nav-auth .btn-ghost {
    display: none;
  }
  
  .burger-dropdown .burger-login {
    display: flex !important;
  }
  
  .burger-dropdown .burger-divider {
    display: block !important;
  }
  
  .nav-auth .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .burger-btn {
    width: 32px;
    height: 32px;
  }
  
  .burger-dropdown {
    min-width: 180px;
  }
  
  .burger-dropdown a {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ============================================
   Telegram Subscribe Section
   ============================================ */
.telegram-section {
  padding: 60px 0;
  background: transparent;
}

.telegram-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 50px;
  background: rgba(30, 30, 50, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(36, 162, 231, 0.3);
  backdrop-filter: blur(10px);
}

.telegram-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #24a2e7, #5865F2);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(36, 162, 231, 0.4);
}

.telegram-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.telegram-content {
  flex: 1;
}

.telegram-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.telegram-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #24a2e7, #1a8cd8);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(36, 162, 231, 0.4);
}

.btn-telegram:hover {
  background: linear-gradient(135deg, #1a8cd8, #1478c0);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(36, 162, 231, 0.5);
}

.btn-telegram svg {
  flex-shrink: 0;
}

/* Telegram Section - Responsive */
@media (max-width: 900px) {
  .telegram-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }
  
  .telegram-title {
    font-size: 1.25rem;
  }
  
  .telegram-text {
    font-size: 0.95rem;
  }
}

/* ============================================
   Footer Social
   ============================================ */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #24a2e7, #5865F2);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Floating Telegram Button
   ============================================ */
.floating-telegram {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #24a2e7, #1a8cd8);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(36, 162, 231, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-telegram:hover {
  background: linear-gradient(135deg, #1a8cd8, #1478c0);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(36, 162, 231, 0.6);
}

.floating-telegram svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-telegram-text {
  white-space: nowrap;
}

/* Floating Button - Responsive */
@media (max-width: 768px) {
  .floating-telegram {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .floating-telegram svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .floating-telegram {
    padding: 14px;
    border-radius: 50%;
    bottom: 80px;
  }
  
  .floating-telegram-text {
    display: none;
  }
  
  .floating-telegram svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Cookie Consent
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(20, 20, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--accent1);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-accept {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 75, 159, 0.4);
}

/* Cookie Consent - Responsive */
@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .cookie-text {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-accept {
    width: 100%;
  }
}

