:root {
  --fd-canvas: #091017;
  --fd-surface: #111a23;
  --fd-surface-strong: #162231;
  --fd-surface-soft: #0d151d;
  --fd-border: rgba(148, 163, 184, 0.18);
  --fd-border-strong: rgba(25, 215, 195, 0.34);
  --fd-text: #f4f7fb;
  --fd-text-muted: #b9c4d3;
  --fd-text-soft: #8a95a7;
  --fd-accent: #19d7c3;
  --fd-accent-strong: #58a6ff;
  --fd-accent-violet: #8b7dff;
  --fd-shadow: 0 24px 60px rgba(4, 10, 18, 0.42);
  --fd-radius-sm: 10px;
  --fd-radius-md: 18px;
  --fd-radius-lg: 28px;

  --bg-canvas: var(--fd-canvas);
  --bg-surface: var(--fd-surface);
  --bg-surface-alt: var(--fd-surface-strong);
  --border-subtle: var(--fd-border);
  --border-default: var(--fd-border);
  --border-strong: var(--fd-border-strong);
  --text-primary: var(--fd-text);
  --text-secondary: var(--fd-text-muted);
  --text-tertiary: var(--fd-text-soft);
  --accent: var(--fd-accent);
  --accent-strong: var(--fd-accent-strong);
  --shadow-md: var(--fd-shadow);
  --radius-sm: var(--fd-radius-sm);
  --radius-md: var(--fd-radius-md);
  --radius-lg: var(--fd-radius-lg);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --input-height: 48px;
  --font-body: "SUIT", system-ui, sans-serif;
  --font-heading: "Jost", "SUIT", sans-serif;
}

body.flydrop-theme {
  background:
    radial-gradient(circle at top left, rgba(88, 166, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 215, 195, 0.10), transparent 22%),
    linear-gradient(180deg, #081019 0%, #0a1017 100%);
  color: var(--fd-text);
}

.flydrop-theme #wrap {
  min-height: 100vh;
  background: transparent;
}

.flydrop-theme .header {
  background: rgba(9, 16, 23, 0.82);
  border-image: none;
  border-bottom: 1px solid var(--fd-border-strong);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(4, 10, 18, 0.25);
}

.flydrop-theme .header .headerIn {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 76px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.flydrop-theme .header .logo a {
  display: block;
  width: 176px;
}

.flydrop-theme .header .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.flydrop-theme .header .gnb {
  height: 100%;
  width: 100%;
  max-width: 680px;
  flex: 1;
}

.flydrop-theme .header .gnb > ul {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.flydrop-theme .header .gnb li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.flydrop-theme .header .gnb li a {
  display: block;
  color: var(--fd-text);
}

.flydrop-theme .header .gnb li a:hover {
  color: var(--fd-accent);
}

.flydrop-theme .header .sub_gnb {
  top: 68px;
  left: -18px;
  width: 188px;
  padding: 8px 0;
  border: 1px solid var(--fd-border);
  border-radius: 16px;
  background: rgba(10, 16, 23, 0.96);
  box-shadow: var(--fd-shadow);
}

.flydrop-theme .header .sub_gnb li a {
  color: var(--fd-text-muted);
}

.flydrop-theme .header .sign_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flydrop-theme .header .sign_wrap li {
  display: none;
}

.flydrop-theme .header .sign_wrap li.on {
  display: block;
}

.flydrop-theme .header .sign_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--fd-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fd-text-muted);
  transition: var(--hover-transition);
}

.flydrop-theme .header .sign_btn:hover {
  border-color: var(--fd-border-strong);
  color: var(--fd-text);
}

.flydrop-theme .header .sign_up_btn,
.flydrop-theme .header .log_out_btn {
  border-color: rgba(25, 215, 195, 0.36);
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.18), rgba(88, 166, 255, 0.16));
  color: var(--fd-text);
}

.flydrop-theme .footer {
  margin-top: 80px;
  border-top: 1px solid var(--fd-border);
  background: rgba(8, 16, 24, 0.98);
}

.flydrop-theme .footer .inner {
  max-width: 1400px;
  width: 100%;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.flydrop-theme .footer .img_wrap {
  display: none;
}

.flydrop-theme .footer .f_info h2,
.flydrop-theme .footer .copy {
  letter-spacing: 0.08em;
}

.flydrop-theme .footer .f_info {
  min-width: 0;
}

.flydrop-theme .footer .sub {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.flydrop-theme .footer address {
  margin-bottom: 20px;
  padding-left: 24px;
  background: url(/images/icons/email_btn.svg) no-repeat 0 center / auto 20px;
}

.flydrop-theme .footer .notice {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.flydrop-theme .footer .notice a:hover {
  color: var(--fd-accent);
}

.flydrop-theme .telegram {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--fd-border);
}

.flydrop-theme .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow-y: auto;
}

.flydrop-theme .modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.78);
  backdrop-filter: blur(12px);
}

.flydrop-theme .modal.on {
  display: block;
}

.flydrop-theme .modal .inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 6vh auto;
  padding: 32px 32px 28px;
  border: 1px solid rgba(25, 215, 195, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(25, 215, 195, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.98) 0%, rgba(13, 21, 29, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(4, 10, 18, 0.48);
}

.flydrop-theme .modal.airdrop_modal .inner {
  width: min(920px, 100%);
}

.flydrop-theme .modal.list_modal .inner {
  width: min(980px, 100%);
}

.flydrop-theme .modal h2,
.flydrop-theme .modal h3,
.flydrop-theme .modal h4 {
  color: var(--fd-text);
}

.flydrop-theme .modal .sub_title {
  color: var(--fd-text-muted);
}

.flydrop-theme .modal .modal_head,
.flydrop-theme .modal .modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.flydrop-theme .modal .modal_body,
.flydrop-theme .modal .text_wrap,
.flydrop-theme .modal .content {
  color: var(--fd-text-muted);
}

.flydrop-theme .modal .text_wrap {
  max-height: 52vh;
  overflow-y: auto;
  padding-right: 8px;
  line-height: 1.7;
}

.flydrop-theme .modal .modal_foot,
.flydrop-theme .modal .modal_footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.flydrop-theme .modal .modal_close_btn,
.flydrop-theme .modal .modal_confirm_btn,
.flydrop-theme .modal .download_btn,
.flydrop-theme .modal .copy_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(25, 215, 195, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fd-text);
  font-weight: 600;
}

.flydrop-theme .modal .modal_confirm_btn,
.flydrop-theme .modal .copy_btn {
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.94), rgba(88, 166, 255, 0.94));
  color: #081019;
}

.flydrop-theme .modal .download_btn:hover,
.flydrop-theme .modal .modal_close_btn:hover,
.flydrop-theme .modal .modal_confirm_btn:hover,
.flydrop-theme .modal .copy_btn:hover {
  border-color: rgba(25, 215, 195, 0.42);
}

.flydrop-theme .modal .input_wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.flydrop-theme .modal .input_wrap input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fd-text);
}

.flydrop-theme .modal.referral_modal .inner,
.flydrop-theme .modal.print_modal .inner,
.flydrop-theme .modal.issuing .inner {
  width: min(760px, 100%);
}

.flydrop-theme .modal .info {
  gap: 18px;
  align-items: flex-start;
}

.flydrop-theme .modal .info .button_112,
.flydrop-theme .modal .button_180 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(25, 215, 195, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fd-text);
}

.flydrop-theme .modal .button_180 {
  min-width: 132px;
  margin-top: 6px;
}

.flydrop-theme .modal .button_112.on,
.flydrop-theme .modal .button_180.on {
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.94), rgba(88, 166, 255, 0.94));
  color: #081019;
}

.flydrop-theme .modal .table_wrap {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.flydrop-theme .modal .table_wrap tbody td {
  color: var(--fd-text-muted);
  word-break: break-word;
}

.flydrop-theme .modal .table_wrap tbody td.error,
.flydrop-theme .modal.list_modal .table_wrap tbody td {
  color: #ffc947;
}

.flydrop-theme .modal .table_nav {
  display: none;
}

.flydrop-theme .modal .info .info_text.color_theme {
  color: var(--fd-accent);
}

.flydrop-theme .modal .info .info_text.color_alert {
  color: #ffc947;
}

.flydrop-theme .modal .modal_x_btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.flydrop-theme .modal .modal_x_btn .line {
  background: var(--fd-text-muted);
}

.flydrop-theme .connection.modal .inner {
  width: min(520px, 100%);
}

.flydrop-theme .connection.modal ul {
  gap: 12px;
}

.flydrop-theme .connection.modal ul li {
  max-width: 100%;
}

.flydrop-theme .connection.modal ul button {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--fd-text);
  justify-content: flex-start;
  padding: 0 18px;
}

.flydrop-theme .connection.modal ul button:hover {
  border-color: rgba(25, 215, 195, 0.28);
  background: rgba(25, 215, 195, 0.08);
}

.flydrop-theme .connection.modal ul button span {
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--font-body);
  font-weight: 600;
}

.flydrop-theme .issue_stat_grid {
  gap: 12px;
}

.flydrop-theme .issue_stat_card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flydrop-theme .issue_action_wrap {
  gap: 12px;
}

@media screen and (max-width: 1024px) {
  .flydrop-theme .header .headerIn {
    padding: 0 16px;
  }

  .flydrop-theme .header .logo a {
    width: 154px;
  }

  .flydrop-theme .header .gnb {
    max-width: 560px;
  }

  .flydrop-theme .modal {
    padding: 16px;
  }

  .flydrop-theme .modal .inner {
    padding: 28px 20px 24px;
  }
}

.flydrop-theme .flydrop-home {
  position: relative;
}

.flydrop-theme .flydrop-home .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.flydrop-theme .hero_btn {
  min-width: 164px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Jost", "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.flydrop-theme .hero_btn:hover {
  transform: translateY(-1px);
}

.flydrop-theme .hero_btn.primary {
  background: linear-gradient(135deg, var(--fd-accent), var(--fd-accent-strong));
  color: #081019;
}

.flydrop-theme .hero_btn.secondary {
  border-color: rgba(88, 166, 255, 0.28);
  background: rgba(88, 166, 255, 0.08);
  color: var(--fd-text);
}

.flydrop-theme .hero_btn.tertiary {
  border-color: var(--fd-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fd-text-muted);
}

.flydrop-theme .hero_section {
  padding: 70px 0 28px;
}

.flydrop-theme .hero_section .hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.flydrop-theme .hero_section .hero_copy,
.flydrop-theme .hero_section .hero_panel {
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius-lg);
  box-shadow: var(--fd-shadow);
}

.flydrop-theme .hero_section .hero_copy {
  padding: 44px;
  background: radial-gradient(circle at top left, rgba(25, 215, 195, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(17, 26, 35, 0.96), rgba(9, 16, 23, 0.96));
}

.flydrop-theme .hero_section .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fd-accent);
  letter-spacing: 0.16em;
  font-size: 12px;
}

.flydrop-theme .hero_section .hero_title {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fd-text);
}

.flydrop-theme .hero_section .hero_summary {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--fd-text-muted);
  line-height: 1.8;
}

.flydrop-theme .hero_section .hero_actions,
.flydrop-theme .support_section .support_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.flydrop-theme .hero_section .hero_actions {
  margin-bottom: 22px;
}

.flydrop-theme .hero_section .hero_badges,
.flydrop-theme .lane_section .lane_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flydrop-theme .hero_section .hero_badges li,
.flydrop-theme .lane_section .lane_list li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fd-text-soft);
}

.flydrop-theme .hero_section .hero_panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(10, 16, 23, 0.98));
}

.flydrop-theme .hero_section .panel_label,
.flydrop-theme .feature_section .feature_kicker,
.flydrop-theme .support_section .support_label,
.flydrop-theme .lane_section .lane_tag {
  display: inline-block;
  color: var(--fd-accent);
  letter-spacing: 0.16em;
  font-size: 12px;
}

.flydrop-theme .hero_section .panel_label {
  margin-bottom: 12px;
  color: var(--fd-accent-strong);
  letter-spacing: 0.18em;
}

.flydrop-theme .hero_section .panel_title {
  font-size: 28px;
  line-height: 1.2;
  color: var(--fd-text);
}

.flydrop-theme .hero_section .panel_steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flydrop-theme .hero_section .panel_steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flydrop-theme .hero_section .panel_steps li strong,
.flydrop-theme .support_section h2,
.flydrop-theme .lane_section .lane_card h2,
.flydrop-theme .feature_section .feature_card h3 {
  color: var(--fd-text);
}

.flydrop-theme .hero_section .panel_steps li strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.flydrop-theme .hero_section .panel_steps li p,
.flydrop-theme .feature_section .feature_card p,
.flydrop-theme .support_section p,
.flydrop-theme .lane_section .lane_card p {
  color: var(--fd-text-muted);
  line-height: 1.75;
}

.flydrop-theme .hero_section .step_no {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.18), rgba(88, 166, 255, 0.18));
  color: var(--fd-text);
  font-size: 18px;
}

.flydrop-theme .hero_section .panel_callout {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(25, 215, 195, 0.08);
  border: 1px solid rgba(25, 215, 195, 0.16);
}

.flydrop-theme .hero_section .panel_callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fd-text);
}

.flydrop-theme .hero_section .panel_callout p {
  color: var(--fd-text-muted);
  line-height: 1.7;
}

.flydrop-theme .lane_section,
.flydrop-theme .feature_section {
  padding: 0 0 28px;
}

.flydrop-theme .lane_section .lane_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.flydrop-theme .lane_section .lane_card {
  display: block;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--fd-border);
  background: linear-gradient(180deg, rgba(17, 26, 35, 0.94), rgba(11, 18, 27, 0.94));
  box-shadow: var(--fd-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.flydrop-theme .lane_section .lane_card:hover {
  transform: translateY(-4px);
  border-color: var(--fd-border-strong);
  background: linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(11, 18, 27, 0.98));
}

.flydrop-theme .lane_section .lane_tag,
.flydrop-theme .feature_section .feature_kicker,
.flydrop-theme .support_section .support_label {
  margin-bottom: 14px;
}

.flydrop-theme .lane_section .lane_card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.flydrop-theme .lane_section .lane_card p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.flydrop-theme .feature_section .feature_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flydrop-theme .feature_section .feature_card {
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--fd-border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--fd-shadow);
}

.flydrop-theme .feature_section .feature_card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
}

.flydrop-theme .support_section {
  padding: 0 0 16px;
}

.flydrop-theme .support_section .support_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border-radius: 26px;
  border: 1px solid rgba(25, 215, 195, 0.18);
  background: radial-gradient(circle at left top, rgba(25, 215, 195, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 28, 41, 0.98), rgba(9, 16, 23, 0.98));
  box-shadow: var(--fd-shadow);
}

.flydrop-theme .support_section h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.15;
}

.flydrop-theme .support_section p {
  max-width: 760px;
  line-height: 1.8;
}

.flydrop-theme .support_section .support_actions {
  justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .flydrop-theme .hero_section .hero_grid,
  .flydrop-theme .feature_section .feature_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flydrop-theme .support_section .support_card {
    flex-direction: column;
    align-items: flex-start;
  }

  .flydrop-theme .support_section .support_actions {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 860px) {
  .flydrop-theme .hero_section {
    padding-top: 44px;
  }

  .flydrop-theme .hero_section .hero_grid,
  .flydrop-theme .lane_section .lane_grid,
  .flydrop-theme .feature_section .feature_grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .flydrop-theme .hero_section .hero_copy,
  .flydrop-theme .hero_section .hero_panel,
  .flydrop-theme .lane_section .lane_card,
  .flydrop-theme .feature_section .feature_card,
  .flydrop-theme .support_section .support_card {
    padding: 24px;
  }

  .flydrop-theme .hero_section .hero_title {
    font-size: 40px;
  }

  .flydrop-theme .support_section h2 {
    font-size: 28px;
  }

  .flydrop-theme .header .headerIn,
  .flydrop-theme .footer .inner {
    gap: 18px;
  }
}
