/* ===================================================
   STARFUN HYBRID APP - MAIN STYLESHEET
   Brand Colors: #0760a1 (Blue), #32a4a7 (Teal)
   Font: Noto Sans KR
   =================================================== */

:root {
  --sf-primary: #0760a1;
  --sf-primary-dark: #03509d;
  --sf-teal: #32a4a7;
  --sf-teal-light: #3bb8bc;
  --sf-gradient: linear-gradient(135deg, #32a4a7 0%, #03509d 100%);
  --sf-gradient-reverse: linear-gradient(135deg, #03509d 0%, #32a4a7 100%);
  --sf-gradient-vertical: linear-gradient(180deg, #32a4a7 0%, #0760a1 100%);
  --sf-text-dark: #222;
  --sf-text: #333;
  --sf-text-secondary: #666;
  --sf-text-muted: #999;
  --sf-bg: #f5f6fa;
  --sf-bg-light: #f9fafb;
  --sf-white: #fff;
  --sf-border: #e8e8e8;
  --sf-border-light: #f0f0f0;
  --sf-danger: #e74c3c;
  --sf-success: #27ae60;
  --sf-warning: #f39c12;
  --sf-shadow: 0 2px 12px rgba(7, 96, 161, 0.08);
  --sf-shadow-lg: 0 8px 30px rgba(7, 96, 161, 0.12);
  --sf-radius: 12px;
  --sf-radius-sm: 8px;
  --sf-radius-lg: 20px;
  --sf-safe-top: env(safe-area-inset-top, 0px);
  --sf-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---- Reset & Base ---- */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--sf-text);
  background: var(--sf-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

/* Onsen UI overrides */
ons-page {
  background: var(--sf-bg) !important;
  font-family: 'Noto Sans KR', sans-serif !important;
}

ons-toolbar {
  background: var(--sf-white) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}

ons-toolbar .center {
  font-weight: 700 !important;
  font-size: 17px !important;
  color: var(--sf-text-dark) !important;
}

ons-toolbar .left ons-back-button {
  color: var(--sf-primary) !important;
}

.toolbar__title {
  font-family: 'Noto Sans KR', sans-serif !important;
}

/* Tab bar */
ons-tabbar .tabbar {
  background: var(--sf-white) !important;
  border-top: 1px solid var(--sf-border-light) !important;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04) !important;
  padding-bottom: var(--sf-safe-bottom) !important;
}

ons-tab .tabbar__icon {
  font-size: 22px !important;
}

ons-tab[active] .tabbar__icon,
ons-tab[active] .tabbar__label {
  color: var(--sf-primary) !important;
}

ons-tab .tabbar__label {
  font-family: 'Noto Sans KR', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  margin-top: 2px !important;
}

/* ---- Splash Screen ---- */
.splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #ffffff !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
}

.splash-screen::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(50,164,167,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.splash-screen::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(7,96,161,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes splashGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, 3%); }
}

.splash-logo {
  width: 260px;
  max-width: 70%;
  height: auto;
  margin-bottom: 28px;
  animation: splashFadeIn 1s ease-out;
  position: relative;
  z-index: 1;
}

.splash-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  animation: splashFadeIn 1s ease-out 0.3s both;
  position: relative;
  z-index: 1;
}

.splash-subtitle {
  font-size: 14px;
  color: var(--sf-text-muted);
  font-weight: 400;
  animation: splashFadeIn 1s ease-out 0.5s both;
  position: relative;
  z-index: 1;
}

.splash-loader {
  margin-top: 40px;
  width: 36px;
  height: 36px;
  border: 3px solid var(--sf-border);
  border-top-color: var(--sf-teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ---- Onboarding ---- */
.onboarding-page {
  background: var(--sf-white);
}

.onboarding-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  min-height: 100%;
}

.onboarding-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  box-shadow: 0 12px 40px rgba(7, 96, 161, 0.25);
}

.onboarding-icon i {
  font-size: 56px;
  color: #fff;
}

.onboarding-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--sf-text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.onboarding-desc {
  font-size: 15px;
  color: var(--sf-text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.onboarding-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 30px 0;
}

.onboarding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sf-border);
  transition: all 0.3s;
}

.onboarding-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--sf-primary);
}

.onboarding-actions {
  padding: 0 24px 40px;
  width: 100%;
}

/* ---- Buttons ---- */
.sf-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--sf-radius);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}

.sf-btn-primary {
  background: var(--sf-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(7, 96, 161, 0.3);
}

.sf-btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(7, 96, 161, 0.3);
}

.sf-btn-outline {
  background: transparent;
  color: var(--sf-primary);
  border: 1.5px solid var(--sf-primary);
}

.sf-btn-outline:active {
  background: rgba(7, 96, 161, 0.05);
}

.sf-btn-ghost {
  background: transparent;
  color: var(--sf-text-secondary);
}

.sf-btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--sf-radius-sm);
}

.sf-btn-pill {
  border-radius: 50px;
}

.sf-btn + .sf-btn {
  margin-top: 10px;
}

/* ---- Cards ---- */
.sf-card {
  background: var(--sf-white);
  border-radius: var(--sf-radius);
  box-shadow: var(--sf-shadow);
  overflow: hidden;
  margin-bottom: 14px;
}

.sf-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.sf-card-body {
  padding: 16px;
}

.sf-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sf-text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.sf-card-desc {
  font-size: 13px;
  color: var(--sf-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sf-card-horizontal {
  display: flex;
  align-items: stretch;
}

.sf-card-horizontal .sf-card-img {
  width: 110px;
  height: auto;
  min-height: 110px;
  flex-shrink: 0;
  border-radius: var(--sf-radius) 0 0 var(--sf-radius);
}

.sf-card-horizontal .sf-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Progress Bar ---- */
.sf-progress {
  width: 100%;
  height: 6px;
  background: var(--sf-border-light);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}

.sf-progress-bar {
  height: 100%;
  background: var(--sf-gradient);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.sf-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.sf-progress-percent {
  font-weight: 700;
  color: var(--sf-primary);
}

.sf-progress-amount {
  font-weight: 500;
  color: var(--sf-text-dark);
}

.sf-progress-goal {
  color: var(--sf-text-muted);
}

/* ---- Tags/Badges ---- */
.sf-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.sf-tag-primary {
  background: rgba(7, 96, 161, 0.1);
  color: var(--sf-primary);
}

.sf-tag-teal {
  background: rgba(50, 164, 167, 0.1);
  color: var(--sf-teal);
}

.sf-tag-danger {
  background: rgba(231, 76, 60, 0.1);
  color: var(--sf-danger);
}

.sf-tag-success {
  background: rgba(39, 174, 96, 0.1);
  color: var(--sf-success);
}

/* ---- Section ---- */
.sf-section {
  padding: 20px 16px;
}

.sf-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sf-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sf-text-dark);
}

.sf-section-more {
  font-size: 13px;
  color: var(--sf-text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Banner / Hero ---- */
.sf-hero {
  background: var(--sf-gradient);
  padding: 28px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sf-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.sf-hero-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 6px;
}

.sf-hero-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.sf-hero-desc {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ---- Category Grid ---- */
.sf-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 4px;
}

.sf-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.sf-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 22px;
  color: #fff;
  transition: transform 0.2s;
}

.sf-category-item:active .sf-category-icon {
  transform: scale(0.92);
}

.sf-category-icon.cat-funding { background: var(--sf-gradient); }
.sf-category-icon.cat-music { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.sf-category-icon.cat-studio { background: linear-gradient(135deg, #fd79a8, #e84393); }
.sf-category-icon.cat-goods { background: linear-gradient(135deg, #f39c12, #fdcb6e); }
.sf-category-icon.cat-dist { background: linear-gradient(135deg, #00b894, #55efc4); }
.sf-category-icon.cat-artist { background: linear-gradient(135deg, #e17055, #fab1a0); }
.sf-category-icon.cat-portfolio { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.sf-category-icon.cat-request { background: linear-gradient(135deg, #636e72, #b2bec3); }

.sf-category-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--sf-text);
  text-align: center;
  line-height: 1.3;
}

/* ---- Horizontal Scroll List ---- */
.sf-hscroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sf-hscroll::-webkit-scrollbar {
  display: none;
}

.sf-hscroll .sf-card {
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  margin-bottom: 4px;
}

/* ---- List Items ---- */
.sf-list-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--sf-white);
  border-bottom: 1px solid var(--sf-border-light);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.sf-list-item:active {
  background: var(--sf-bg-light);
}

.sf-list-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--sf-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.sf-list-item-body {
  flex: 1;
  min-width: 0;
}

.sf-list-item-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--sf-text-dark);
  margin-bottom: 2px;
}

.sf-list-item-sub {
  font-size: 12px;
  color: var(--sf-text-muted);
}

.sf-list-item-arrow {
  color: var(--sf-text-muted);
  font-size: 14px;
  margin-left: 8px;
}

/* ---- Form Elements ---- */
.sf-form-group {
  margin-bottom: 18px;
}

.sf-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--sf-text);
  margin-bottom: 8px;
}

.sf-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  color: var(--sf-text-dark);
  background: var(--sf-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.sf-form-input:focus {
  border-color: var(--sf-primary);
  box-shadow: 0 0 0 3px rgba(7, 96, 161, 0.1);
}

.sf-form-input::placeholder {
  color: var(--sf-text-muted);
}

.sf-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ---- Funding Detail ---- */
.sf-funding-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.sf-funding-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-funding-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.sf-funding-hero-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sf-funding-hero-artist {
  font-size: 13px;
  opacity: 0.9;
}

.sf-funding-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sf-border-light);
  border-radius: var(--sf-radius);
  overflow: hidden;
  margin: 16px;
}

.sf-funding-stat {
  background: var(--sf-white);
  padding: 16px 12px;
  text-align: center;
}

.sf-funding-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--sf-primary);
  margin-bottom: 4px;
}

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

/* ---- Payment UI ---- */
.sf-payment-option {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--sf-white);
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.sf-payment-option.selected {
  border-color: var(--sf-primary);
  background: rgba(7, 96, 161, 0.03);
}

.sf-payment-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sf-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 18px;
  color: var(--sf-primary);
}

.sf-payment-option-label {
  font-size: 15px;
  font-weight: 500;
}

.sf-payment-option-check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sf-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all 0.2s;
}

.sf-payment-option.selected .sf-payment-option-check {
  background: var(--sf-primary);
  border-color: var(--sf-primary);
  color: #fff;
}

/* ---- Bottom Fixed Actions ---- */
.sf-bottom-action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + var(--sf-safe-bottom));
  background: var(--sf-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  z-index: 100;
}

.sf-bottom-action-inner {
  display: flex;
  gap: 10px;
}

/* ---- Matching Cards ---- */
.sf-match-card {
  background: var(--sf-white);
  border-radius: var(--sf-radius);
  padding: 18px;
  box-shadow: var(--sf-shadow);
  margin-bottom: 14px;
}

.sf-match-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sf-match-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
}

.sf-match-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--sf-text-dark);
}

.sf-match-card-role {
  font-size: 12px;
  color: var(--sf-text-muted);
}

.sf-match-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.sf-match-card-info {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--sf-border-light);
  font-size: 13px;
  color: var(--sf-text-secondary);
}

/* ---- My Page ---- */
.sf-profile-header {
  background: var(--sf-gradient);
  padding: 30px 20px 24px;
  text-align: center;
  color: #fff;
}

.sf-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
}

.sf-profile-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sf-profile-email {
  font-size: 13px;
  opacity: 0.8;
}

.sf-profile-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}

.sf-profile-stat {
  text-align: center;
}

.sf-profile-stat-num {
  font-size: 20px;
  font-weight: 700;
}

.sf-profile-stat-label {
  font-size: 11px;
  opacity: 0.75;
  margin-top: 2px;
}

/* ---- Login / Auth ---- */
.sf-auth-header {
  text-align: center;
  padding: 40px 20px 30px;
}

.sf-auth-logo {
  width: 200px;
  max-width: 60%;
  height: auto;
  margin-bottom: 12px;
}

.sf-auth-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--sf-text-dark);
  margin-bottom: 6px;
}

.sf-auth-subtitle {
  font-size: 14px;
  color: var(--sf-text-muted);
}

.sf-auth-form {
  padding: 0 24px;
}

.sf-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--sf-text-muted);
}

.sf-auth-divider::before,
.sf-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sf-border);
}

.sf-social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.sf-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--sf-border);
  background: var(--sf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s;
}

.sf-social-btn:active {
  transform: scale(0.95);
}

.sf-social-btn.kakao {
  background: #FEE500;
  border-color: #FEE500;
  color: #3C1E1E;
}

.sf-social-btn.naver {
  background: #03C75A;
  border-color: #03C75A;
  color: #fff;
}

.sf-social-btn.google {
  color: #4285F4;
}

/* Social Login Full Buttons */
.sf-social-login-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-social-login-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: var(--sf-radius-sm);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.sf-social-login-btn:active {
  opacity: 0.85;
}

.sf-social-login-btn i,
.sf-social-login-btn b {
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.sf-social-login-btn span {
  flex: 1;
  text-align: center;
  margin-right: 36px;
}

.sf-social-login-btn.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.sf-social-login-btn.naver {
  background: #03C75A;
  color: #fff;
}

.sf-social-login-btn.google {
  background: #fff;
  color: var(--sf-text);
  border: 1.5px solid var(--sf-border);
}

.sf-social-login-btn.instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
}

/* ---- Share Bottom Sheet ---- */
.sf-share-dim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 99998;
  transition: background 0.3s;
}

.sf-share-dim.active {
  background: rgba(0,0,0,0.45);
}

.sf-share-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sf-white);
  border-radius: 20px 20px 0 0;
  padding: 0 20px;
  padding-bottom: calc(24px + var(--sf-safe-bottom));
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sf-share-sheet.active {
  transform: translateY(0);
}

.sf-share-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
}

.sf-share-sheet-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--sf-text-dark);
}

.sf-share-sheet-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--sf-bg);
  border-radius: 50%;
  font-size: 16px;
  color: var(--sf-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 12px;
  padding-bottom: 10px;
}

.sf-share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.sf-share-item:active .sf-share-icon {
  transform: scale(0.9);
}

.sf-share-item span {
  font-size: 11px;
  color: var(--sf-text-secondary);
  font-weight: 500;
}

.sf-share-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.15s;
}

.sf-share-icon.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

.sf-share-icon.instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
}

.sf-share-icon.naver {
  background: #03C75A;
  color: #fff;
}

.sf-share-icon.facebook {
  background: #1877F2;
  color: #fff;
}

.sf-share-icon.x-twitter {
  background: #000;
  color: #fff;
}

.sf-share-icon.link {
  background: var(--sf-bg);
  color: var(--sf-primary);
}

/* ---- Artist Profile ---- */
.sf-artist-profile {
  background: var(--sf-white);
  border-radius: var(--sf-radius);
  padding: 18px;
  box-shadow: var(--sf-shadow);
  margin: 0 16px 16px;
}

.sf-artist-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.sf-artist-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.sf-artist-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--sf-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sf-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sf-primary);
  color: #fff;
  font-size: 9px;
}

.sf-artist-meta {
  font-size: 12px;
  color: var(--sf-text-muted);
  margin-top: 2px;
}

.sf-artist-intro {
  font-size: 13px;
  color: var(--sf-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sf-artist-sns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sf-artist-sns-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--sf-bg);
  font-size: 12px;
  color: var(--sf-text-secondary);
  text-decoration: none;
}

.sf-artist-sns-item i {
  font-size: 13px;
  color: var(--sf-primary);
}

/* ---- Funding Schedule / Policy ---- */
.sf-schedule-card {
  background: var(--sf-bg-light);
  border: 1px solid var(--sf-border-light);
  border-radius: var(--sf-radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

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

.sf-schedule-row + .sf-schedule-row {
  border-top: 1px dashed var(--sf-border);
}

.sf-schedule-label {
  font-size: 13px;
  color: var(--sf-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sf-schedule-label i {
  width: 16px;
  text-align: center;
  color: var(--sf-teal);
}

.sf-schedule-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--sf-text-dark);
}

.sf-policy-box {
  background: var(--sf-bg-light);
  border: 1px solid var(--sf-border-light);
  border-radius: var(--sf-radius-sm);
  padding: 14px 16px;
}

.sf-policy-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sf-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sf-policy-title i {
  color: var(--sf-warning);
}

.sf-policy-text {
  font-size: 12px;
  color: var(--sf-text-muted);
  line-height: 1.7;
}

/* ---- Update Timeline ---- */
.sf-update-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 20px;
}

.sf-update-item::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: var(--sf-border);
}

.sf-update-item:last-child::before {
  display: none;
}

.sf-update-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sf-white);
  border: 2px solid var(--sf-teal);
}

.sf-update-date {
  font-size: 11px;
  color: var(--sf-text-muted);
  margin-bottom: 4px;
}

.sf-update-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--sf-text-dark);
  margin-bottom: 4px;
}

.sf-update-content {
  font-size: 13px;
  color: var(--sf-text-secondary);
  line-height: 1.5;
}

/* ---- Detail Image Gallery ---- */
.sf-detail-gallery img {
  width: 100%;
  border-radius: var(--sf-radius-sm);
  margin-bottom: 12px;
  display: block;
}

/* ---- Sort Bar ---- */
.sf-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--sf-text-muted);
}

.sf-sort-bar select {
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
  color: var(--sf-text);
  background: var(--sf-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
}

/* ---- App Footer ---- */
.sf-app-footer {
  margin-top: 24px;
  padding: 24px 16px 30px;
  background: var(--sf-bg);
  border-top: 1px solid var(--sf-border-light);
}

.sf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 16px;
}

.sf-footer-links a {
  font-size: 13px;
  color: var(--sf-text-secondary);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 2px;
}

.sf-footer-links a:active {
  color: var(--sf-primary);
}

.sf-footer-bold {
  font-weight: 700 !important;
  color: var(--sf-text-dark) !important;
}

.sf-footer-cs {
  background: var(--sf-white);
  border-radius: var(--sf-radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.sf-footer-cs-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sf-text-dark);
  margin-bottom: 10px;
}

.sf-footer-cs-title i {
  color: var(--sf-primary);
  margin-right: 4px;
}

.sf-footer-cs-btns {
  display: flex;
  gap: 12px;
}

.sf-footer-cs-btns a {
  font-size: 13px;
  color: var(--sf-text-secondary);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sf-footer-cs-btns a i {
  font-size: 10px;
  color: var(--sf-text-muted);
}

.sf-footer-info {
  margin-bottom: 12px;
}

.sf-footer-info p {
  font-size: 11px;
  color: var(--sf-text-muted);
  line-height: 1.7;
  margin: 0;
}

.sf-footer-notice {
  margin-bottom: 12px;
}

.sf-footer-notice p {
  font-size: 11px;
  color: var(--sf-text-muted);
  line-height: 1.6;
  margin: 0;
}

.sf-footer-copyright {
  font-size: 11px;
  color: var(--sf-border);
  font-weight: 500;
}

/* ---- Skeleton Loading ---- */
.sf-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--sf-radius-sm);
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Empty State ---- */
.sf-empty {
  text-align: center;
  padding: 60px 40px;
}

.sf-empty-icon {
  font-size: 48px;
  color: var(--sf-border);
  margin-bottom: 16px;
}

.sf-empty-text {
  font-size: 15px;
  color: var(--sf-text-muted);
  line-height: 1.6;
}

/* ---- Search Bar ---- */
.sf-search-bar {
  padding: 12px 16px;
  background: var(--sf-white);
}

.sf-search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--sf-bg);
  border-radius: 50px;
  padding: 0 16px;
}

.sf-search-input-wrap i {
  color: var(--sf-text-muted);
  font-size: 16px;
  margin-right: 10px;
}

.sf-search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  outline: none;
  color: var(--sf-text);
}

/* ---- Filter Chips ---- */
.sf-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 12px 0 12px;
  -webkit-overflow-scrolling: touch;
}

.sf-chips::-webkit-scrollbar { display: none; }

.sf-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--sf-border);
  background: var(--sf-white);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sf-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.sf-chip.active {
  background: var(--sf-primary);
  border-color: var(--sf-primary);
  color: #fff;
}

/* ---- Utilities ---- */
.sf-px { padding-left: 16px; padding-right: 16px; }
.sf-py { padding-top: 16px; padding-bottom: 16px; }
.sf-mt-sm { margin-top: 8px; }
.sf-mt { margin-top: 16px; }
.sf-mt-lg { margin-top: 24px; }
.sf-mb { margin-bottom: 16px; }
.sf-mb-lg { margin-bottom: 24px; }
.sf-text-center { text-align: center; }
.sf-text-right { text-align: right; }
.sf-text-primary { color: var(--sf-primary) !important; }
.sf-text-teal { color: var(--sf-teal) !important; }
.sf-text-muted { color: var(--sf-text-muted) !important; }
.sf-text-sm { font-size: 13px; }
.sf-text-xs { font-size: 11px; }
.sf-fw-bold { font-weight: 700; }
.sf-fw-medium { font-weight: 500; }
.sf-hidden { display: none !important; }
.sf-flex { display: flex; }
.sf-flex-between { display: flex; justify-content: space-between; align-items: center; }
.sf-gap { gap: 10px; }

/* ---- Amount Input ---- */
.sf-amount-display {
  text-align: center;
  padding: 24px 20px;
}

.sf-amount-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--sf-text-dark);
}

.sf-amount-unit {
  font-size: 18px;
  font-weight: 400;
  color: var(--sf-text-muted);
  margin-left: 4px;
}

.sf-amount-presets {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.sf-amount-preset {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--sf-border);
  background: var(--sf-white);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--sf-text-secondary);
  cursor: pointer;
}

.sf-amount-preset:active,
.sf-amount-preset.active {
  border-color: var(--sf-primary);
  color: var(--sf-primary);
  background: rgba(7, 96, 161, 0.05);
}

/* ---- Notification Badge ---- */
.sf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--sf-danger);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* ---- Home Custom Toolbar ---- */
.sf-home-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--sf-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  padding-top: var(--sf-safe-top);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  z-index: 200;
}

.sf-home-logo {
  height: 28px;
  width: auto;
}

.sf-home-toolbar-right {
  display: flex;
  gap: 4px;
}

.sf-icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sf-text);
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}

.sf-icon-btn:active {
  background: var(--sf-bg);
}

/* ---- Responsive ---- */
@media (max-width: 380px) {
  .sf-category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .sf-category-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .sf-hero-title { font-size: 19px; }
  .sf-funding-stat-value { font-size: 16px; }
}

@media (min-width: 500px) {
  .sf-hscroll .sf-card { min-width: 300px; }
  .sf-category-grid { gap: 16px; }
}

/* ---- Animations ---- */
.sf-fade-in {
  animation: sfFadeIn 0.4s ease-out;
}

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

.sf-slide-up {
  animation: sfSlideUp 0.3s ease-out;
}

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

/* ---- Toast ---- */
.sf-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(34,34,34,0.92);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  animation: sfToastIn 0.3s ease-out, sfToastOut 0.3s ease-in 2.5s forwards;
  white-space: nowrap;
}

@keyframes sfToastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes sfToastOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ---- Complete/Success Screen ---- */
.sf-complete {
  text-align: center;
  padding: 60px 30px;
}

.sf-complete-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 96, 161, 0.25);
}

.sf-complete-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--sf-text-dark);
  margin-bottom: 8px;
}

.sf-complete-desc {
  font-size: 14px;
  color: var(--sf-text-secondary);
  line-height: 1.6;
}

/* ---- Banner Carousel ---- */
.sf-banner-carousel {
  position: relative;
  overflow: hidden;
}

.sf-banner-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sf-banner-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.sf-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.sf-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.sf-banner-dot.active {
  width: 18px;
  border-radius: 3px;
  background: #fff;
}

/* ---- Funding Detail Tabs ---- */
.sf-detail-tabs {
  display: flex;
  border-bottom: 2px solid var(--sf-border-light);
  background: var(--sf-white);
  position: sticky;
  top: 44px;
  z-index: 10;
}

.sf-detail-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--sf-text-muted);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  font-family: 'Noto Sans KR', sans-serif;
  transition: color 0.2s;
}

.sf-detail-tab.active {
  color: var(--sf-primary);
}

.sf-detail-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--sf-primary);
  border-radius: 1px;
}

.sf-detail-panel {
  display: none;
}

.sf-detail-panel.active {
  display: block;
}

/* ---- FAB (Floating Action Button) ---- */
.sf-fab {
  position: fixed;
  bottom: 76px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sf-gradient);
  color: #fff;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(7, 96, 161, 0.35);
  cursor: pointer;
  z-index: 100;
  transition: transform 0.2s, box-shadow 0.2s;
  padding-bottom: var(--sf-safe-bottom);
}

.sf-fab:active {
  transform: scale(0.9);
  box-shadow: 0 2px 10px rgba(7, 96, 161, 0.3);
}

/* ---- Scroll Reveal Animation ---- */
.sf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sf-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Skeleton Loading ---- */
.sf-skeleton-card {
  background: var(--sf-white);
  border-radius: var(--sf-radius);
  overflow: hidden;
  margin-bottom: 14px;
}

.sf-skeleton-img {
  width: 100%;
  height: 160px;
}

.sf-skeleton-line {
  height: 14px;
  margin: 10px 16px;
  border-radius: 4px;
}

.sf-skeleton-line.short {
  width: 40%;
}

.sf-skeleton-line.medium {
  width: 70%;
}

/* ---- Image Placeholder ---- */
.sf-img-placeholder {
  background: var(--sf-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sf-border);
  font-size: 32px;
}

/* ---- Pull to Refresh indicator ---- */
.sf-pull-indicator {
  text-align: center;
  padding: 16px;
  color: var(--sf-text-muted);
  font-size: 13px;
}

.sf-pull-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--sf-border);
  border-top-color: var(--sf-teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 8px;
}

/* ---- Count Up ---- */
.sf-count-up {
  display: inline-block;
}

/* ---- Supporters Avatars ---- */
.sf-supporters {
  display: flex;
  align-items: center;
}

.sf-supporter-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sf-gradient);
  border: 2px solid var(--sf-white);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}

.sf-supporter-avatar:first-child {
  margin-left: 0;
}

.sf-supporter-count {
  font-size: 12px;
  color: var(--sf-text-muted);
  margin-left: 8px;
}

/* ---- Greeting ---- */
.sf-greeting {
  padding: 14px 18px;
  background: var(--sf-white);
  box-shadow: var(--sf-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--sf-text);
  font-weight: 500;
}

.sf-greeting-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.sf-greeting strong {
  color: var(--sf-primary);
  font-weight: 700;
}

.sf-greeting-text {
  flex: 1;
  line-height: 1.4;
}

.sf-greeting-sub {
  font-size: 12px;
  color: var(--sf-text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ---- Lazy Image ---- */
.sf-lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sf-lazy-img.loaded {
  opacity: 1;
}

/* ---- Trust Section ---- */
.sf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px;
}

.sf-trust-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--sf-white);
  border-radius: var(--sf-radius);
  box-shadow: var(--sf-shadow);
}

.sf-trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background: var(--sf-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.sf-trust-label {
  font-size: 11px;
  color: var(--sf-text-secondary);
  line-height: 1.4;
}

.sf-trust-label strong {
  color: var(--sf-text-dark);
  font-weight: 700;
}

/* ---- Stats Banner ---- */
.sf-stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sf-gradient);
  border-radius: var(--sf-radius-lg);
  padding: 20px 16px;
  margin: 0 16px;
}

.sf-stats-item {
  flex: 1;
  text-align: center;
}

.sf-stats-num {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.sf-stats-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.sf-stats-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}
