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

:root {
  --red: #ff0000;
  --white: #ffffff;
  --black: #0a0a0a;
  --nav-height: 100px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Pretendard", sans-serif;
  overflow-x: hidden;
  min-width: 1920px;
  min-height: 1080px;
}

/* ── YOUTUBE NAV ── */
#yt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  z-index: 100;
}

.yt-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.yt-logo-icon {
  width: 52px;
  height: 37px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-logo-icon::after {
  content: "";
  border-left: 17px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 3px;
}

.yt-logo-text {
  color: var(--white);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
}

.yt-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  max-width: 70%;
  overflow: hidden;
}

.yt-nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  align-items: center;
  user-select: none;
  height: 100%;
}

.yt-nav-links::-webkit-scrollbar {
  display: none;
}

.yt-nav-links.dragging {
  cursor: grabbing;
}

.yt-nav-links li {
  flex-shrink: 0;
}

.yt-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px !important;
  font-weight: 500;
  background: #272727;
  padding: 12px 20px !important;
  border-radius: 16px !important;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
}

.yt-nav-links a:hover {
  background: #3a3a3a;
}

.yt-nav-links a.active {
  background: var(--white);
  color: #0a0a0a;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 600vh;
  padding-top: var(--nav-height);
}

#sticky-wrap {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

#phase-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 10vw;
  transition: opacity 0.6s ease;
}

.split-letter {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(100px, 20vw, 220px);
  color: var(--white);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  position: absolute;
  line-height: 1;
}

.split-letter.visible {
  opacity: 1;
}

#l0 {
  left: 8vw;
  top: 50%;
  transform: translateY(calc(-50% + 60px));
}
#l1 {
  left: 24vw;
  top: 50%;
  transform: translateY(calc(-50% + 60px));
}
#l2 {
  left: 40vw;
  top: 50%;
  transform: translateY(calc(-50% + 60px));
}
#l3 {
  left: 56vw;
  top: 50%;
  transform: translateY(calc(-50% + 60px));
}
#l4 {
  left: 72vw;
  top: 50%;
  transform: translateY(calc(-50% + 60px));
}

#l0.visible {
  transform: translateY(-50%);
}
#l1.visible {
  transform: translateY(-50%);
}
#l2.visible {
  transform: translateY(-50%);
}
#l3.visible {
  transform: translateY(-50%);
}
#l4.visible {
  transform: translateY(-50%);
}

#phase-main {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

#phase-main.visible {
  opacity: 1;
  pointer-events: all;
}
#phase-main.faded {
  opacity: 0.15;
}

.eyebrow {
  font-size: 18px;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.eyebrow span {
  color: var(--red);
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}

.hero-title .solid {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(100px, 16vw, 200px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.hero-title .outline {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(100px, 16vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1.5px #444;
  line-height: 1;
  letter-spacing: -2px;
}

.hero-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #333;
  color: #888;
}

.tag.red {
  border-color: var(--red);
  color: var(--red);
}

#phase-collage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#phase-collage.visible {
  opacity: 1;
  pointer-events: all;
}

.collage-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  pointer-events: none;
}

.collage-group.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.collage-group img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ── 프로필 섹션 ── */
#section-profile {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}

#profile-banner {
  width: 100%;
  height: 260px;
  background: #111;
  overflow: hidden;
  position: relative;
}

#profile-banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1a1a1a;
}

#profile-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#profile-info {
  padding: 80px 64px 40px;
  border-bottom: 1px solid #1a1a1a;
}

#profile-left {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

#profile-avatar {
  width: 300px !important;
  height: 300px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
  flex-shrink: 0;
  margin-top: -80px;
  background: #1a1a1a;
  padding: 10px 0;
}

#profile-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 70px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

#profile-handle {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #888;
  margin-bottom: 14px;
}
#profile-bio {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 6px;
}
#bio-more {
  color: var(--white);
  cursor: pointer;
  font-weight: 500;
}
#profile-bio-sub {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #666;
  margin-bottom: 16px;
}

.hire-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #272727;
  color: var(--white);
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.hire-btn:hover {
  background: #3a3a3a;
}

#profile-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 20px 80px 80px;
}

.detail-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

#profile-edu .detail-title {
  font-size: 64px;
}
#profile-info-right .detail-title {
  font-size: 64px;
}

.edu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edu-list li {
  display: flex;
  gap: 20px;
  font-size: 24px;
  line-height: 1.6;
}
.edu-period {
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 20px;
}
.edu-name {
  color: #ccc;
  font-size: 24px;
}

#skill-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#skill-icons img {
  width: 72px;
  height: 72px;
}

.info-text {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #aaa;
  line-height: 1.7;
}
#profile-info-right .info-text {
  font-size: 24px;
}

#profile-sticky {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
}
#profile-sticky::-webkit-scrollbar {
  display: none;
}

/* ── 서비스 디자인 섹션 ── */
#section-service {
  background: var(--black);
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
  margin-bottom: 40px;
}

.marquee-row {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: row !important;
  height: auto;
}
.marquee-row .marquee-track {
  flex-shrink: 0;
  min-width: max-content;
}

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
}
.marquee-track .dot {
  color: var(--red);
  font-size: 36px;
}

.row-1 .marquee-track {
  animation: marquee 14s linear infinite;
}
.row-1 .marquee-track span {
  font-size: 128px;
}
.row-1 .marquee-track .dot {
  font-size: 96px;
}

.row-2 .marquee-track {
  animation: marquee-reverse 18s linear infinite;
}
.row-2 .marquee-track span {
  font-size: 64px;
}
.row-2 .marquee-track .dot {
  font-size: 48px;
}

.row-3 .marquee-track {
  animation: marquee 22s linear infinite;
}
.row-3 .marquee-track span {
  font-size: 96px;
}
.row-3 .marquee-track .dot {
  font-size: 72px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ── 캐러셀 ── */
.carousel-wrap {
  overflow: hidden;
  padding: 40px 0 60px;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  will-change: transform;
  cursor: grab;
}
.carousel-track:active {
  cursor: grabbing;
}

.carousel-card {
  flex-shrink: 0;
  width: 568px;
  opacity: 0.4;
  transform: scale(0.82);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: pointer;
}

.carousel-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-card .card-thumb {
  width: 568px;
  height: 318px;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1e1e;
  margin-bottom: 12px;
  position: relative;
}
.carousel-card .card-thumb.dummy::after {
  content: none;
}
.carousel-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-card .card-info {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.carousel-card .card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #272727;
  flex-shrink: 0;
  overflow: hidden;
}
.carousel-card .card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-card .card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}
.carousel-card .card-sub,
.carousel-card .card-meta {
  font-size: 13px;
  color: #aaa;
}

/* ── 상세페이지 섹션 ── */
#section-detail {
  background: var(--black);
}

#shorts-container {
  display: flex;
  height: calc(100vh - 200px);
  overflow: visible;
  position: relative;
}

#shorts-list {
  flex: 1;
  display: flex;
  gap: 24px;
  padding: 20px 0;
  overflow: visible;
  align-items: center;
}

.shorts-card {
  flex-shrink: 0;
  width: 446px;
  cursor: pointer;
  opacity: 0.4;
  transform: scale(0.95);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.shorts-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.shorts-thumb {
  width: 446px;
  height: 672px;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1e1e;
  margin-bottom: 10px;
  position: relative;
}
.shorts-card.active .shorts-thumb {
  width: 468px;
  height: 702px;
}
.shorts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shorts-info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.shorts-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #272727;
  flex-shrink: 0;
  overflow: hidden;
}
.shorts-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shorts-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shorts-sub,
.shorts-meta {
  font-size: 12px;
  color: #aaa;
}

#shorts-panel {
  position: fixed !important;
  top: 100px !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 500px !important;
  height: calc(100vh - 100px) !important;
  background: #1e1e1e !important;
  border-left: 1px solid #333 !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  z-index: 999 !important;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
}

#shorts-panel.hidden {
  transform: translateX(100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-link-btn {
  display: none;
}
#panel-desc-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
  margin: 14px 0 6px;
}
#panel-project {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}
#panel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
#panel-close {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
}
#panel-close:hover {
  color: white;
}
#panel-project {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}
.tag-shorts {
  color: #3ea6ff;
  margin-left: 4px;
}
#panel-stats {
  display: flex;
  gap: 8px;
  align-items: center;
}
.stat-box {
  background: #2e2e2e;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  flex: 1;
}
.stat-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  word-break: keep-all;
  line-height: 1.3;
}
.stat-label {
  font-size: 12px;
  color: #bbb;
}
.stat-btn {
  background: #2e2e2e;
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.stat-btn:hover {
  background: #444;
}
#panel-desc {
  font-size: 13px;
  color: #ddd;
  line-height: 1.7;
}

#detail-title-bar {
  padding: 20px 40px;
}
.detail-section-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
}

/* ── SNS 디자인 섹션 ── */
#section-sns {
  background: var(--black);
}

#sns-main {
  display: flex;
  gap: 40px;
  padding: 24px 48px;
  align-items: flex-start;
  height: calc(100vh - 160px);
  overflow: hidden;
  position: relative;
}

#sns-player {
  width: 520px !important;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#player-cover {
  width: 520px !important;
  height: 520px !important;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: block;
}
#player-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#player-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  color: white;
  font-weight: 700;
}
#player-sub {
  font-size: 14px;
  color: #888;
}
#player-progress {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
}
#player-bar {
  width: 40%;
  height: 100%;
  background: white;
}
#player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ctrl-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
}
.ctrl-btn:hover {
  color: white;
}
.ctrl-play {
  color: white;
  font-size: 28px;
}

#sns-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: visible;
}

#sns-card-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
  z-index: 2;
  position: relative;
}

.sns-small-card {
  width: 322px !important;
  border-radius: 12px;
  background: none;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.sns-small-card:hover {
  transform: scale(1.03);
}
.sns-small-card.selected {
  box-shadow: 0 0 0 3px var(--red);
}

.sns-card-img-wrap {
  width: 100%;
  height: 322px;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
  flex-shrink: 0;
}
.sns-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-card-label {
  position: relative;
  bottom: auto;
  left: auto;
  font-size: 13px;
  color: white;
  line-height: 1.4;
  padding: 8px 4px 0;
}
.sns-card-label span {
  font-size: 11px;
  color: #888;
}

#sns-circle-wrap {
  position: fixed !important;
  bottom: -300px !important;
  right: -300px !important;
  width: 726px !important;
  height: 726px !important;
  z-index: 50 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  animation: none !important;
}

#sns-circle-wrap.visible {
  opacity: 1 !important;
}

.circle-ring {
  position: absolute;
  bottom: 0;
  right: 0;
}
.circle-ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes rotate-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════
   브랜드 디자인 섹션
══════════════════════════════════════ */
#section-brand {
  background: #111;
}

#brand-sticky {
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 배경 기울어진 마퀴 ── */
#brand-bg-marquee {
  position: absolute;
  inset: -40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
  gap: 0;
}

.brand-bg-row {
  display: flex;
  overflow: hidden;
  width: 200%;
  margin-left: -50%;
  white-space: nowrap;
  line-height: 1;
}

.brand-bg-track {
  display: inline-block;
  white-space: nowrap;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #1e1e1e;
  letter-spacing: 2px;
  animation: brand-marquee-fwd 20s linear infinite;
  flex-shrink: 0;
  padding-right: 40px;
}

.brand-bg-row.rev .brand-bg-track {
  animation: brand-marquee-rev 24s linear infinite;
}

@keyframes brand-marquee-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes brand-marquee-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ── 소셜 피드 카드 ── */
#brand-feed-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#brand-feed-card {
  width: 420px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.4);
  color: #111;
}

/* 카드 헤더 */
#brand-feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
}

#brand-feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  flex-shrink: 0;
}
#brand-feed-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#brand-feed-meta {
  flex: 1;
}
#brand-feed-channel {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
#brand-feed-badge {
  color: #aaa;
  font-weight: 400;
}
#brand-feed-date {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}
#brand-feed-desc-short {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin-top: 2px;
}

/* 본문 텍스트 */
#brand-feed-body-text {
  padding: 0 16px 10px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}
#brand-feed-more {
  color: #888;
  cursor: pointer;
  font-size: 12px;
}

/* ── 이미지 슬라이더 ── */
#brand-feed-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  aspect-ratio: 1 / 1;
}

#brand-feed-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.brand-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 이미지 플레이스홀더 */
.brand-slide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
}

.brand-slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.brand-slide-logo-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slide-logo-text {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #222;
  letter-spacing: 2px;
}

.brand-slide-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 화살표 버튼 */
.brand-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  font-size: 22px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition:
    background 0.2s,
    transform 0.15s;
  line-height: 1;
  padding: 0;
}
.brand-slide-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.brand-slide-prev {
  left: 10px;
}
.brand-slide-next {
  right: 10px;
}

/* 인디케이터 dots */
#brand-slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}
.brand-dot-item {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s,
    transform 0.2s;
}
.brand-dot-item.active {
  background: #fff;
  transform: scale(1.3);
}

/* 슬라이드 카운터 */
#brand-slide-counter {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 10;
  font-family: "Roboto", sans-serif;
}

/* ── 액션 바 ── */
#brand-feed-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 14px;
}

.brand-action-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 20px;
  transition: background 0.15s;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.brand-action-btn:hover {
  background: #f0f0f0;
}
.brand-action-btn svg {
  flex-shrink: 0;
}
