/* ═══════════════════════════════════════════════════
   CLICKERS COMING SOON — CSS
   Colors: #8B1A2D (Maroon), #0D0D0D (Dark)
═══════════════════════════════════════════════════ */

:root {
  --primary:    #8B1A2D;
  --primary-lt: #B02238;
  --primary-dk: #5C0F1E;
  --glow-color: rgba(139, 26, 45, 0.5);
  --dark:       #0D0D0D;
  --dark-2:     #141414;
  --white:      #ffffff;
  --gray:       #666;
  --gray-lt:    #999;
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
}

/* ─── CUSTOM MOUSE CURSOR ─────────────────────────── */
.cs-cursor {
  position: fixed;
  width: 36px; height: 58px;
  pointer-events: none;
  z-index: 99999;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
  will-change: transform;
}
.cs-cursor svg { width: 36px; height: 58px; display: block; }

.cs-cursor-ring {
  position: fixed;
  width: 60px; height: 60px;
  border: 1.5px solid rgba(139,26,45,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: transform;
}
body:has(a:hover) .cs-cursor-ring,
body:has(button:hover) .cs-cursor-ring {
  width: 80px; height: 80px;
  border-color: rgba(139,26,45,0.6);
}
@media (hover: none) {
  .cs-cursor, .cs-cursor-ring { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ─── CANVAS ──────────────────────────────────────── */
#cs-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── BACKGROUND ORBS ─────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,26,45,0.25), transparent 70%);
  top: -150px; right: -100px;
  animation-duration: 14s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,26,45,0.18), transparent 70%);
  bottom: -100px; left: -80px;
  animation-duration: 10s;
  animation-delay: -4s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(176,34,56,0.15), transparent 70%);
  top: 40%; left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.08); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ─── MAIN WRAPPER ────────────────────────────────── */
.cs-wrapper {
  position: relative;
  z-index: 10;
  width: 100%; height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 0;
}

/* ─── LOGO ────────────────────────────────────────── */
.cs-logo-wrap {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDown 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.cs-logo-img {
  height: 220px; width: auto;
  max-width: min(600px, 80vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto;
}
/* CSS fallback if no logo uploaded */
.cs-logo-text {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.cs-logo-text .lt-main {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cs-logo-text .lt-click { color: var(--white); }
.cs-logo-text .lt-ers {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.15em;
}
.cs-logo-text .lt-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gray-lt);
  text-transform: uppercase;
}

/* ─── TAGLINE ─────────────────────────────────────── */
.cs-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(139,26,45,0.12);
  border: 1px solid rgba(139,26,45,0.3);
  padding: 7px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}

/* ─── COMING SOON TEXT ────────────────────────────── */
.cs-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  overflow: hidden;
}
.cs-headline .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.2em;
}
.cs-headline .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.cs-headline .word:nth-child(1) span { animation-delay: 1.1s; }
.cs-headline .word:nth-child(2) span {
  animation-delay: 1.3s;
  color: var(--primary);
}

/* ─── SUBTITLE ────────────────────────────────────── */
.cs-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gray-lt);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.7s forwards;
}

/* ─── COUNTDOWN ───────────────────────────────────── */
.cs-countdown {
  display: flex;
  gap: 20px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.9s forwards;
}
.cs-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 80px;
}
.cs-time-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cs-time-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.cs-time-sep {
  font-size: 2rem;
  color: var(--primary);
  align-self: flex-start;
  margin-top: 16px;
  font-weight: 300;
  opacity: 0.6;
}

/* ─── SOCIAL ICONS ────────────────────────────────── */
.cs-social {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s ease 2.1s forwards;
}
.cs-social-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(139,26,45,0.4);
  background: rgba(139,26,45,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.cs-social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(139,26,45,0.5);
}
.cs-social-btn svg { display: block; }

/* ─── BOTTOM DIVIDER LINE ─────────────────────────── */
.cs-line {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-lt), var(--primary), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 20;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── KEYFRAMES ───────────────────────────────────── */
@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 600px) {
  .cs-wrapper { padding: 32px 20px; gap: 0; }
  .cs-logo-img { height: 130px; max-width: min(360px, 75vw); }
  .cs-logo-wrap { margin-bottom: 32px; }
  .cs-countdown { gap: 10px; }
  .cs-time-block { padding: 12px 14px; min-width: 60px; border-radius: 12px; }
  .cs-time-sep { font-size: 1.5rem; margin-top: 12px; }
  .cs-social { gap: 10px; }
  .cs-social-btn { width: 42px; height: 42px; }
}
@media (max-width: 380px) {
  .cs-headline { font-size: 3rem; }
  .cs-time-block { padding: 10px 10px; min-width: 52px; }
  .cs-countdown { gap: 6px; }
}
