/* ╔══════════════════════════════════════════════════════════════════╗
   ║           SÜRPRİZ #1 • FİDAN & TƏHMAZ • DÜNYAMIZ                 ║
   ║                  Professional • Romantik • CSS                    ║
   ╚══════════════════════════════════════════════════════════════════╝
*/

/* ===========================
   ROOT DƏYİŞƏNLƏRİ (Ana saytla eyni)
=========================== */
:root {
  --primary-pink: #e91e63;
  --primary-pink-light: #f4477a;
  --primary-pink-dark: #c2185b;
  --primary-pink-soft: #ff80ab;
  --primary-pink-glow: rgba(233, 30, 99, 0.6);
  
  --secondary-rose: #ff6b9d;
  --secondary-coral: #ff7eb3;
  --secondary-magenta: #d81b60;
  
  --dark-bg: #0a0a0f;
  --dark-bg-secondary: #12121a;
  --dark-bg-tertiary: #1a1a25;
  --dark-card: rgba(20, 15, 30, 0.85);
  --dark-card-solid: #1a1225;
  
  --glass-bg: rgba(25, 10, 20, 0.3);
  --glass-bg-light: rgba(35, 15, 25, 0.2);
  --glass-border: rgba(233, 30, 99, 0.3);
  --glass-border-light: rgba(233, 30, 99, 0.1);
  --glass-blur: blur(4px);
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --text-pink: #e91e63;
  --text-pink-light: #ff80ab;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-pink: 0 0 32px var(--primary-pink-glow);
  --shadow-pink-lg: 0 0 64px rgba(233, 30, 99, 0.4);
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --z-background: 0;
  --z-content: 10;
  --z-notification: 1000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 99, 0.3);
  border-radius: var(--radius-full);
}

/* ===========================
   UNİVERSE BACKGROUND
=========================== */
.universe-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  pointer-events: none;
  background-image: url('https://raw.githubusercontent.com/XelilovTh/surpriz_No2/main/bg-image/bg-romantic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.universe-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 230px 80px, rgba(233, 30, 99, 0.3), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 400px 200px;
  opacity: 0.6;
  animation: starsFloat 120s linear infinite;
}

@keyframes starsFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}


.notification-bar.show {
  top: 20px;
}

.notification-bar i {
  font-size: 1.1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===========================
   ƏSAS KONTEYNER
=========================== */
.surprise-container {
  position: relative;
  z-index: var(--z-content);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out;
}

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

/* ===========================
   GERİ DÖNÜŞ DÜYMƏSİ
=========================== */
.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 30px;
  transition: all var(--transition-base);
}

.back-to-home:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: var(--primary-pink);
  color: var(--text-primary);
  transform: translateX(-4px);
  box-shadow: 0 0 20px var(--primary-pink-glow);
}

.back-to-home i {
  color: var(--primary-pink);
}

/* ===========================
   HERO BÖLMƏSİ
=========================== */
.hero-section-surprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
  padding: 20px 0;
  position: relative;
}

.hero-content-surprise {
  flex: 1;
  text-align: center;
}

.crown-wrapper {
  margin-bottom: 20px;
}

.crown-wrapper i {
  font-size: 3.5rem;
  color: var(--primary-pink);
  filter: drop-shadow(0 0 20px var(--primary-pink-glow));
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

.hero-title-surprise {
  font-family: 'Dancing Script', cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.title-line1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--primary-pink-light);
  text-shadow: 0 0 20px var(--primary-pink-glow);
  animation: slideIn 0.8s 0.3s both;
}

.title-line2 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--primary-pink);
  text-shadow: 0 0 40px var(--primary-pink-glow);
  animation: slideIn 0.8s 0.6s both;
}

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

.hero-subtitle-surprise {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  margin-top: 20px;
  letter-spacing: 2px;
  animation: fadeIn 1s 1s both;
}

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

/* Xarakter */
.character-surprise {
  position: relative;
  animation: charFloat 4s ease-in-out infinite;
}

@keyframes charFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.char-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.char-face {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff8fb1, #ffb3c6);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 100, 150, 0.5);
  position: relative;
  gap: 3px;
}

.char-eyes {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.eye {
  width: 20px;
  height: 20px;
  background: #2d0a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blinkEye 4s ease-in-out infinite;
}

@keyframes blinkEye {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
}

.pupil {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transition: transform 0.1s;
}

.char-blush {
  position: absolute;
  bottom: 28px;
  width: 100%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(255, 100, 100, 0.45) 0%, transparent 70%);
}

.char-mouth {
  font-size: 1.4rem;
}

.char-heart-hold {
  font-size: 2rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

/* ===========================
   MƏKTUB BÖLMƏSİ
=========================== */
.letter-section-surprise {
  margin: 60px 0;
}

.section-header-surprise {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header-surprise i {
  font-size: 2rem;
  color: var(--primary-pink);
  text-shadow: 0 0 20px var(--primary-pink-glow);
}

.section-header-surprise h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: 0 0 20px var(--primary-pink-glow);
}

.header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), transparent);
}

.section-sub {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-tertiary);
  margin-top: 10px;
  margin-left: 60px;
  font-size: 0.95rem;
}

.letter-paper-surprise {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: clamp(30px, 6vw, 60px);
  box-shadow: var(--shadow-xl), inset 0 0 30px rgba(233, 30, 99, 0.1);
}

.letter-paper-surprise::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--glass-border);
  border-radius: 20px;
  pointer-events: none;
}

.letter-deco {
  position: absolute;
  font-size: 1.8rem;
  color: var(--primary-pink);
  opacity: 0.4;
}

.top-left { top: 18px; left: 22px; }
.top-right { top: 18px; right: 22px; }
.bottom-left { bottom: 18px; left: 22px; }
.bottom-right { bottom: 18px; right: 22px; }

.letter-date-surprise {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.letter-body-surprise {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 2;
  color: var(--text-primary);
  min-height: 200px;
  white-space: pre-wrap;
}

.letter-body-surprise .cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--primary-pink);
  animation: curBlink 0.9s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes curBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.letter-sign-surprise {
  margin-top: 40px;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--primary-pink-light);
  text-align: right;
  line-height: 1.7;
}

/* ===========================
   SÜRPRİZ DÜYMƏSİ
=========================== */
.action-section-surprise {
  text-align: center;
  margin: 60px 0;
}

.surprise-button-wrapper-surprise {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.surprise-btn-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-pink-dark), var(--primary-pink));
  border: none;
  border-radius: 60px;
  padding: 22px 60px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px var(--primary-pink-glow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.surprise-btn-main:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 44px var(--primary-pink-glow);
}

.surprise-btn-main:active {
  transform: scale(0.97);
}

.surprise-btn-main:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.gift-icon {
  font-size: 1.6rem;
  animation: giftWiggle 2s ease-in-out infinite;
}

@keyframes giftWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-16deg); }
  75% { transform: rotate(16deg); }
}

.btn-ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.surprise-btn-main:hover .btn-ripple {
  opacity: 1;
  animation: rippleGlow 1.5s ease-in-out infinite;
}

@keyframes rippleGlow {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

.surprise-message-main {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
  pointer-events: none;
}

.surprise-message-main.hidden {
  display: none;
}

.surprise-message-main.show {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.msg-heart-big {
  font-size: 4.5rem;
  color: var(--primary-pink);
  display: block;
  animation: heartbeat 1s ease-in-out infinite;
  margin-bottom: 20px;
}

.surprise-message-main h3 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--primary-pink);
  font-weight: 400;
  margin-bottom: 20px;
}

.surprise-message-main p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ===========================
   DİLƏK BÖLMƏSİ
=========================== */
.wish-section-surprise {
  margin: 40px 0 60px;
}

.wish-card-surprise {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.06), rgba(194, 24, 91, 0.04));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 6vw, 50px);
  box-shadow: 0 0 60px rgba(233, 30, 99, 0.15), inset 0 0 40px rgba(255, 100, 150, 0.03);
}

.wish-deco {
  position: absolute;
  font-size: 1.5rem;
  color: var(--primary-pink);
  opacity: 0.35;
}

.wish-deco.tl { top: 18px; left: 20px; }
.wish-deco.tr { top: 18px; right: 20px; }
.wish-deco.bl { bottom: 18px; left: 20px; }
.wish-deco.br { bottom: 18px; right: 20px; }

.wish-field {
  margin-bottom: 28px;
}

.wish-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-pink-light);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.wish-input,
.wish-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
}

.wish-input::placeholder,
.wish-textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.wish-input:focus,
.wish-textarea:focus {
  border-color: var(--primary-pink);
  background: rgba(233, 30, 99, 0.08);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.18);
}

.wish-char-count {
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 6px;
  letter-spacing: 1px;
}

.send-wish-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, #c2185b, var(--primary-pink), var(--secondary-coral));
  background-size: 200% 200%;
  border: none;
  border-radius: 14px;
  padding: 20px 32px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px var(--primary-pink-glow);
  transition: transform 0.3s, box-shadow 0.3s, background-position 0.5s;
  margin-top: 10px;
}

.send-wish-btn:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow: 0 16px 40px var(--primary-pink-glow);
}

.send-wish-btn:active {
  transform: scale(0.98);
}

.send-wish-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.send-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.send-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 160%; }
}

.wish-status {
  margin-top: 22px;
  padding: 18px 24px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s;
}

.wish-status.hidden {
  display: none;
}

.wish-status.success {
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

.wish-status.error {
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.25);
  color: #ef9a9a;
}

.wish-status.loading {
  background: rgba(233, 30, 99, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--primary-pink-light);
}

/* ===========================
   FOOTER
=========================== */
.footer-surprise {
  margin-top: 60px;
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid var(--glass-border);
}

.footer-hearts {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--primary-pink);
}

.footer-hearts i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-hearts i:nth-child(2) { animation-delay: 0.2s; }
.footer-hearts i:nth-child(3) { animation-delay: 0.4s; }
.footer-hearts i:nth-child(4) { animation-delay: 0.6s; }
.footer-hearts i:nth-child(5) { animation-delay: 0.8s; }

.footer-surprise p {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-tertiary);
  font-size: 1rem;
}

.footer-year {
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ===========================
   CONFETTİ CANVAS
=========================== */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
}

/* ===========================
   RESPONSİV
=========================== */
@media (max-width: 768px) {
  .hero-section-surprise {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    gap: 40px;
  }
  
  .character-surprise {
    margin-top: 20px;
  }
  
  .char-face {
    width: 80px;
    height: 80px;
  }
  
  .letter-paper-surprise {
    padding: 30px 20px;
  }
  
  .section-header-surprise h2 {
    font-size: 2rem;
  }
  
  .surprise-btn-main {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
  
  .wish-card-surprise {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .surprise-container {
    padding: 15px 16px 30px;
  }
  
  .back-to-home {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .character-surprise {
    display: none;
  }
  
  .hero-title-surprise .title-line1 {
    font-size: 2rem;
  }
  
  .hero-title-surprise .title-line2 {
    font-size: 3rem;
  }
  
  .letter-body-surprise {
    font-size: 1.1rem;
  }
  
  .surprise-btn-main {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .surprise-message-main {
    padding: 30px 20px;
  }
  
  .send-wish-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ===========================
   VIDEO BÖLMƏSİ
=========================== */
.video-section-surprise {
  margin: 40px 0;
  position: relative;
  z-index: 15;
}

.video-container-surprise {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.surprise-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  bottom: 20px;
  padding-right: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.video-play-btn i {
  color: white;
  font-size: 1.4rem;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 28px var(--primary-pink-glow);
}

/* VIDEO OVERLAY (Qaralma effekti) */
.video-overlay-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.video-overlay-active.show {
  opacity: 1;
  pointer-events: auto;
}

/* Video oynayan zaman digər elementlər gizlənir */
body.video-mode .surprise-container > *:not(.video-section-surprise),
body.video-mode .universe-background,
body.video-mode .back-to-home,
body.video-mode .footer-surprise,
body.video-mode #confettiCanvas {
  opacity: 0;
  transition: opacity 1.3s ease;
  pointer-events: none;
}

body.video-mode .video-section-surprise {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  z-index: 9999;
  margin: 0;
  background: transparent;
  border: none;
}

body.video-mode .video-container-surprise {
  background: transparent;
  border: none;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

body.video-mode .video-play-btn {
  display: none;
}

body.video-mode .surprise-video {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}