/* =====================================================
   LUCKY WHEEL GAME — Visual Style
   Stage / Casino Theme  (v2 — enhanced visuals)
   ===================================================== */

:root {
  --gold:        #FFD700;
  --gold-dim:    #c9a800;
  --gold-glow:   rgba(255,215,0,0.4);
  --red:         #e63946;
  --purple-dark: #1a0533;
  --purple-mid:  #2d0a5c;
  --purple-light:#7c3aed;
  --text-light:  #fff;
  --text-muted:  rgba(255,255,255,0.6);
  --shadow-heavy: 0 8px 40px rgba(0,0,0,0.7);
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--purple-dark);
  color: var(--text-light);
  min-height: 100vh;
  position: relative;
}

.hidden { display: none !important; }

/* =====================================================
   MAINTENANCE
   ===================================================== */
#maintenance-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d0014, #1a0533, #0d0014);
  text-align: center; padding: 24px;
}
.maintenance-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  padding: 48px 32px; max-width: 480px;
}
.maint-icon { font-size: 64px; margin-bottom: 20px; }
.maintenance-box h1 { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.maintenance-box p  { color: var(--text-muted); line-height: 1.7; font-size: 15px; }

/* =====================================================
   STAGE BACKGROUND
   ===================================================== */
.stage-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: radial-gradient(ellipse at 50% -10%, #4a0e8f 0%, #1a0533 40%, #0d0014 100%);
}

.spotlight {
  position: absolute; top: -80px;
  width: 280px; height: 700px;
  opacity: 0.15; pointer-events: none;
}
.spotlight::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(200,140,255,0.9) 0%, transparent 100%);
  clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
  animation: spotFlicker 5s ease-in-out infinite;
}
.sp-left  { left: -40px;  transform: rotate(-12deg); }
.sp-right { right: -40px; transform: rotate(12deg); animation-delay: 2.5s; }
@keyframes spotFlicker { 0%,100%{opacity:0.6} 50%{opacity:1} }

.curtain {
  position: absolute; top: 0; bottom: 0;
  width: 130px; pointer-events: none;
}
.c-left  { left: 0;  background: linear-gradient(90deg,  #3d0055 0%, transparent 100%); }
.c-right { right: 0; background: linear-gradient(270deg, #3d0055 0%, transparent 100%); }
.c-left::before, .c-right::before {
  content: ''; position: absolute; top: 0; bottom: 0; width: 70px;
  background: repeating-linear-gradient(180deg,
    rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.01) 20px, rgba(0,0,0,0.1) 40px);
}
.c-left::before  { right: 0; }
.c-right::before { left: 0; }

.stage-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,215,0,0.07) 0%, transparent 70%);
}

/* =====================================================
   GAME SCREEN
   ===================================================== */
#game-screen {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
}

/* =====================================================
   HEADER
   ===================================================== */
.game-header {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 16px 8px;
}

/* Custom logo image (replaces text banner when set) */
.top-logo-img {
  filter: drop-shadow(0 2px 12px rgba(255,215,0,0.5));
}

/* Hub GIF overlay — positioned over canvas hub center */
/* cy = size/2, canvas height = size*1.30 → top = 50%/1.30 = 38.46% */
/* hub diameter ≈ 13% of canvas width */
.hub-gif {
  position: absolute;
  top: 38.46%;
  left: 50%;
  width: 13%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

/* CSS casino-style banner (default) */
.title-text-banner {
  position: relative;
  background: linear-gradient(180deg, #9a0000 0%, #5c0000 50%, #9a0000 100%);
  border: 3px solid var(--gold);
  border-radius: 6px;
  padding: 10px 48px 8px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.2),
    inset 0 0 30px rgba(0,0,0,0.35),
    0 6px 28px rgba(0,0,0,0.7);
  max-width: min(90vw, 540px); width: 100%;
}
/* Decorative dots top + bottom */
.title-text-banner::before,
.title-text-banner::after {
  content: '';
  position: absolute; left: 10px; right: 10px; height: 8px;
  background-image: radial-gradient(circle, var(--gold) 3.5px, transparent 3.5px);
  background-size: 14px 8px;
  background-repeat: repeat-x;
  background-position: center;
}
.title-text-banner::before { top: -5px; }
.title-text-banner::after  { bottom: -5px; }

.title-text-banner h1 {
  font-size: clamp(22px, 5.5vw, 46px);
  font-weight: 900; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.9), 0 0 40px rgba(255,215,0,0.4), 2px 2px 0 rgba(0,0,0,0.6);
  line-height: 1.15;
}
.title-text-banner h1::before, .title-text-banner h1::after {
  content: '✦'; font-size: 0.4em; vertical-align: middle; margin: 0 8px;
  color: #fff; animation: starBlink 1.2s step-end infinite;
}
.title-text-banner h1::after { animation-delay: 0.6s; }
@keyframes starBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.title-text-banner p {
  font-size: clamp(10px, 2.2vw, 13px); color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px; margin-top: 3px;
}

/* =====================================================
   RUNNING TEXT
   ===================================================== */
.rt-bar {
  width: 100%; overflow: hidden;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,215,0,0.2);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding: 6px 0; margin: 8px 0; white-space: nowrap;
}
.rt-inner {
  display: inline-flex; gap: 80px;
  animation: rtScroll 25s linear infinite;
}
.rt-inner span { font-size: 13px; font-weight: 500; }
@keyframes rtScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =====================================================
   MAIN LAYOUT — side by side
   ===================================================== */
.game-main {
  flex: 1; width: 100%; max-width: 1100px;
  padding: 8px 20px 32px;
  display: flex; flex-direction: row;
  align-items: flex-start; gap: 32px;
  margin: 0 auto;
}

/* =====================================================
   LEFT — WHEEL AREA
   ===================================================== */
.wheel-area {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center;
  width: min(500px, 54vw);
}

.wheel-stage {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}

/* Pointer — hidden, drawn on canvas */
.pointer-wrap { display: none; }

/* Wheel wrap — perspective tilt */
.wheel-wrap {
  position: relative; display: inline-block;
  transform: perspective(800px) rotateX(6deg);
}
#wheel-canvas { display: block; }

/* Stand is drawn on canvas — no CSS needed */

/* =====================================================
   WHEEL CONTROL BUTTONS
   ===================================================== */
.wheel-ctrl-btns { display: flex; gap: 8px; margin-top: 14px; }

.btn-ctrl {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  padding: 7px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s;
}
.btn-ctrl:hover {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.5); color: var(--gold);
}
.btn-ctrl-random { border-color: rgba(124,58,237,0.3); }
.btn-ctrl-random:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.7); color: #c084fc;
}

/* =====================================================
   RIGHT — GAME PANEL
   ===================================================== */
.game-panel {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
  min-width: 0; padding-top: 24px;
}

/* =====================================================
   CODE INPUT CARD
   ===================================================== */
.code-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 16px; padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.code-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}
.code-row { display: flex; gap: 8px; }
.code-row input {
  flex: 1; background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,215,0,0.25);
  border-radius: 10px; color: #fff;
  font-size: 18px; font-weight: 700;
  letter-spacing: 3px; padding: 10px 14px;
  outline: none; transition: border-color 0.2s;
  text-transform: uppercase; min-width: 0;
}
.code-row input::placeholder {
  color: rgba(255,255,255,0.2); font-weight: 400;
  letter-spacing: 1px; font-size: 14px;
}
.code-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
}
.btn-check {
  background: linear-gradient(135deg, var(--gold), #f5a623);
  border: none; border-radius: 10px; color: #000;
  font-size: 13px; font-weight: 800; padding: 10px 18px;
  cursor: pointer; letter-spacing: 1px; transition: all 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.btn-check:hover:not(:disabled) {
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,215,0,0.4);
}
.btn-check:disabled { opacity: 0.5; cursor: not-allowed; }

.code-msg {
  margin-top: 10px; padding: 9px 13px;
  border-radius: 8px; font-size: 13px; font-weight: 500; line-height: 1.4;
}
.code-msg.valid   { background:rgba(34,197,94,0.15);  border:1px solid rgba(34,197,94,0.4);  color:#86efac; }
.code-msg.invalid { background:rgba(239,68,68,0.15);  border:1px solid rgba(239,68,68,0.4);  color:#fca5a5; }

/* =====================================================
   POWER METER + SPIN
   ===================================================== */
#wheel-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px; padding: 20px;
  animation: fadeSlideIn 0.4s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.power-section {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}

.power-label-text {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; text-align: center;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
  min-height: 16px; transition: all 0.3s;
}

.power-meter-track {
  width: 100%; height: 22px;
  background: rgba(0,0,0,0.7);
  border: 2px solid rgba(255,215,0,0.35);
  border-radius: 6px; overflow: hidden; position: relative;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.8), 0 0 10px rgba(255,215,0,0.1);
}
.power-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 40%, #FFD700 70%, #ef4444 100%);
  transition: width 0.05s linear;
  box-shadow: 0 0 14px rgba(255,215,0,0.6);
  position: relative;
}
.power-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.power-segments { position: absolute; inset: 0; display: flex; pointer-events: none; }
.power-segments span { flex: 1; border-right: 2px solid rgba(0,0,0,0.5); }
.power-segments span:last-child { border: none; }

/* SPIN BUTTON — 3D arcade style */
.spin-btn {
  display: flex; align-items: center; justify-content: center;
  width: clamp(160px, 44vw, 220px);
  height: clamp(54px, 14vw, 68px);
  border-radius: 12px;
  background: linear-gradient(180deg, #FFE566 0%, #FFD700 45%, #C8A000 100%);
  border: none;
  outline: none;
  box-shadow:
    0 7px 0 #7A5F00,
    0 10px 20px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.55);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.07s, box-shadow 0.07s;
  user-select: none; -webkit-user-select: none; touch-action: none; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.spin-btn::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}
.spin-btn:not(:disabled):active,
.spin-btn.charging {
  transform: translateY(5px);
  box-shadow:
    0 2px 0 #7A5F00,
    0 4px 8px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.spin-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.spin-btn-label {
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 900; letter-spacing: 6px;
  color: #3D1A00; pointer-events: none;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  line-height: 1;
}

#spin-text {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 4px 8px;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  border: 1px solid rgba(255,215,0,0.15);
}

/* =====================================================
   CONTACT PANEL (in right panel)
   ===================================================== */
.contact-panel { display: flex; flex-direction: column; gap: 10px; }

.c-panel-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
  text-decoration: none; color: #fff;
  font-weight: 700; font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.c-panel-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.c-panel-btn.wa { background: #25D366; }
.c-panel-btn.tg { background: #0088cc; }
.c-panel-icon { font-size: 22px; flex-shrink: 0; }

/* =====================================================
   CARA BERMAIN
   ===================================================== */
.cara-main {
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 0 20px 32px;
}
.cara-main-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px; padding: 24px;
}
.cara-main-inner h2 {
  font-size: 15px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.cara-main-content {
  color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.8;
}
.cara-main-content ol { padding-left: 20px; }
.cara-main-content li { margin-bottom: 6px; }

.cara-contact {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,215,0,0.12);
}
.cara-contact-label {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 12px; text-align: center;
}
.cara-contact-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.c-big-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 14px;
  text-decoration: none; color: #fff;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: all 0.2s;
  min-width: 180px; justify-content: center;
}
.c-big-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.c-big-icon { font-size: 22px; flex-shrink: 0; }

/* =====================================================
   FLOATING CONTACT (mobile)
   ===================================================== */
.contact-btns {
  position: fixed; bottom: 20px; right: 16px;
  display: flex; flex-direction: column; gap: 10px; z-index: 50;
}
.c-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-heavy); transition: transform 0.2s;
}
.c-btn:hover { transform: scale(1.05); }
.c-btn.wa { background: #25D366; }
.c-btn.tg { background: #0088cc; }

/* =====================================================
   RESULT OVERLAY
   ===================================================== */
#result-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

#result-box {
  background: linear-gradient(160deg, #1f0040, #2d0a5c);
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 24px; padding: 36px 28px;
  max-width: 380px; width: 100%; text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,0.5), var(--shadow-heavy);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn { from{transform:scale(0.7);opacity:0} to{transform:scale(1);opacity:1} }

.result-icon { font-size: 60px; margin-bottom: 8px; line-height: 1; }
.result-title {
  font-size: 26px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.result-title.win  { color: var(--gold); text-shadow: 0 0 20px rgba(255,215,0,0.8); }
.result-title.zonk { color: #9ca3af; }
.result-prize-visual {
  margin: 0 auto 12px; width: 96px; height: 96px;
  border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.result-prize-visual img { width:100%; height:100%; object-fit:cover; }
.result-prize-visual .color-block {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center; font-size:32px;
}
.result-prize-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.result-msg { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.result-contacts {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 16px; flex-wrap: wrap;
}
.result-contacts a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 13px;
}
.result-contacts .wa-link { background: #25D366; }
.result-contacts .tg-link { background: #0088cc; }
.btn-result-close {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; color: rgba(255,255,255,0.55);
  padding: 8px 24px; cursor: pointer; font-size: 13px; transition: all 0.2s;
}
.btn-result-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.toast-notif {
  position: fixed;
  top: 24px; left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: linear-gradient(135deg, #0d2e14, #1a4a22);
  border: 2px solid #22c55e;
  color: #4ade80;
  font-size: 14px; font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.35), 0 2px 10px rgba(0,0,0,0.6);
  z-index: 9999;
  letter-spacing: 0.5px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  white-space: nowrap;
}
.toast-notif.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* =====================================================
   CONFETTI
   ===================================================== */
.confetti-layer { position:fixed; inset:0; pointer-events:none; z-index:150; overflow:hidden; }
.confetti-piece {
  position: absolute; top: -12px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotateZ(0deg) rotateX(0deg); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110vh) rotateZ(720deg) rotateX(360deg); opacity: 0; }
}

/* =====================================================
   WELCOME POPUP
   ===================================================== */
.welcome-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}
.welcome-box {
  background: linear-gradient(160deg, #1f0040, #2d0a5c);
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 24px; padding: 40px 32px;
  max-width: 400px; width: 100%; text-align: center;
  box-shadow: 0 0 80px rgba(124,58,237,0.5), 0 20px 60px rgba(0,0,0,0.7);
  animation: popIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.welcome-icon { font-size: 64px; margin-bottom: 12px; line-height: 1; }
.welcome-box h2 {
  font-size: 22px; font-weight: 900; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}
.welcome-box p {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 24px;
}
.btn-welcome-close {
  background: linear-gradient(135deg, var(--gold), #f5a623);
  border: none; border-radius: 999px; color: #000;
  font-size: 14px; font-weight: 800; letter-spacing: 1px;
  padding: 13px 32px; cursor: pointer; transition: all 0.2s;
}
.btn-welcome-close:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

/* =====================================================
   CARA BERMAIN
   ===================================================== */
.cara-main-content ol {
  padding-left: 20px; counter-reset: none;
}
.cara-main-content li {
  margin-bottom: 8px;
}
.cara-main-content p { margin-bottom: 6px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 680px) {
  .game-main {
    flex-direction: column; align-items: center;
    padding: 8px 14px 32px; gap: 16px;
  }
  .wheel-area { width: min(420px, 92vw); }
  .game-panel { width: 100%; max-width: 420px; padding-top: 0; }
  .curtain { width: 60px; }
  .spotlight { width: 180px; }
  .cara-main { padding: 0 14px 24px; }
  .title-text-banner { padding: 8px 28px 6px; }
}
@media (max-width: 380px) {
  .title-text-banner h1 { font-size: 20px; letter-spacing: 2px; }
  .wheel-area { width: 94vw; }
}
