/* ==========================================================================
   BETINE PROMO STYLE SHEET
   Design System: Classic (#363541) & New (#FFC000)
   Font: Bricolage Grotesque
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0a0b12;
  --bg-panel: #141624;
  --classic-color: #363541;     /* Slate / Charcoal Gray */
  --classic-border: #4e4d5c;
  --new-color: #ffc000;         /* Golden Yellow */
  --new-gradient: linear-gradient(135deg, #ffc000 0%, #ff8c00 100%);
  --text-light: #f3f4f6;
  --text-dark: #12131a;
  --text-muted: #9ca3af;
  
  /* Buttons gradients from user reference */
  --telegram-gradient: linear-gradient(180deg, #37aee2 0%, #1e83b8 100%);
  --telegram-glow: rgba(30, 131, 184, 0.45);
  --main-gradient: linear-gradient(180deg, #ffc600 0%, #ff8000 100%);
  --main-glow: rgba(255, 128, 0, 0.4);
  --tv-gradient: linear-gradient(180deg, #484755 0%, #2b2a34 100%);
  --tv-glow: rgba(255, 192, 0, 0.2);

  /* Fonts */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Durations */
  --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background Glowing Elements */
.bg-glows {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-classic {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 53, 65, 0.4) 0%, rgba(54, 53, 65, 0) 70%);
  filter: blur(80px);
}

.glow-new {
  position: absolute;
  bottom: -10%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 192, 0, 0.12) 0%, rgba(255, 192, 0, 0) 75%);
  filter: blur(100px);
}

/* Sparkles Particle Background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  background: radial-gradient(circle, #fff 10%, rgba(255,192,0,0.8) 50%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
  animation: floatSparkle 6s infinite ease-in-out;
  opacity: 0;
}

@keyframes floatSparkle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}

/* Header Styles */
.header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.brand-logo {
  display: inline-block;
  transition: transform var(--transition-speed);
}

.brand-logo:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(54, 53, 65, 0.5);
  border: 1px solid var(--classic-border);
  border-radius: 50px;
  padding: 6px 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 1.8s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #10b981; }
}

.status-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #10b981;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 5;
}

/* Announcement Bar */
.announcement-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(54, 53, 65, 0.6) 0%, rgba(20, 22, 36, 0.8) 100%);
  border-left: 4px solid var(--new-color);
  border-radius: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.announcement-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.announcement-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.announcement-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}

.announcement-text strong {
  color: var(--new-color);
}

/* Main Panel (Lucky Wheel Container) */
.main-panel {
  background: linear-gradient(180deg, rgba(30, 32, 49, 0.7) 0%, rgba(14, 15, 25, 0.9) 100%);
  border: 1px solid var(--classic-border);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.panel-header {
  text-align: center;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  background-color: var(--new-color);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  box-shadow: 0 0 12px rgba(255, 192, 0, 0.3);
}

.panel-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--text-light);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.panel-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 90%;
  margin: 0 auto;
}

/* Lucky Wheel UI */
.wheel-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-outer-glow {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid rgba(255, 192, 0, 0.15);
  box-shadow: 0 0 35px rgba(255, 192, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 28px;
  color: var(--new-color);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  animation: pointerFloat 1.5s infinite ease-in-out;
}

@keyframes pointerFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(3px); }
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid var(--new-color);
  background: conic-gradient(
    from 0deg,
    var(--classic-color) 0deg 90deg,
    #1d1c26 90deg 180deg,
    var(--new-color) 180deg 270deg,
    #1d1c26 270deg 360deg
  );
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9), 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 6s cubic-bezier(0.15, 0.85, 0.15, 1);
  will-change: transform;
}

/* Slice Labels styling */
.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50px;
  transform-origin: 0% 50%;
  margin-top: -25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 32px;
  box-sizing: border-box;
}

.wheel-label span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  display: block;
}

/* Segment Rotation Angles (Centers) */
.slice-1 { transform: rotate(-45deg); }
.slice-2 { transform: rotate(45deg); }
.slice-3 { transform: rotate(135deg); }
.slice-4 { transform: rotate(225deg); }

/* Highlighted (100 FS Winning Segment) */
.wheel-label.highlight span {
  color: var(--text-dark);
  text-shadow: none;
  font-size: 21px;
}

/* Hub Spin Button */
.wheel-spin-btn {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--new-gradient);
  border: 4px solid var(--classic-color);
  box-shadow: 0 0 20px rgba(255, 192, 0, 0.6), inset 0 2px 4px rgba(255,255,255,0.4);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  transition: transform 0.2s, box-shadow var(--transition-speed);
}

.wheel-spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 192, 0, 0.8), inset 0 2px 4px rgba(255,255,255,0.4);
}

.wheel-spin-btn:active {
  transform: scale(0.95);
}

.wheel-spin-btn::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px dashed var(--new-color);
  opacity: 0.6;
  animation: spinHubOutline 12s linear infinite;
}

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

/* GAME STATE 2: BLOCKED / PLAYED CONTAINER */
.blocked-container {
  text-align: center;
  padding: 10px 0;
}

.gift-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 192, 0, 0.1);
  border: 2px solid var(--new-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0 auto 15px;
  animation: floatGift 3s infinite ease-in-out;
}

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

.blocked-container h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--new-color);
  margin-bottom: 8px;
}

.blocked-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.promo-code-box {
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed var(--classic-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  position: relative;
}

.code-label {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.code-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.copy-btn {
  background-color: var(--classic-color);
  border: 1px solid var(--classic-border);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.copy-btn:hover {
  background-color: var(--new-color);
  color: var(--text-dark);
  border-color: var(--new-color);
}

.blocked-steps {
  text-align: left;
  background: rgba(54, 53, 65, 0.2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
}

.blocked-steps h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blocked-steps ol {
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blocked-steps ol li strong {
  color: var(--text-light);
}

/* ==========================================================================
   NAVIGATION HUB & BUTTONS (As requested in reference image)
   ========================================================================== */

.navigation-hub {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hub-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Premium Pill-shaped Button core style */
.pill-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 62px; /* Large premium height */
  border-radius: 50px; /* Perfect pill shape from image */
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px; /* Big, clear typography */
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow var(--transition-speed), filter var(--transition-speed);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

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

.btn-icon {
  font-size: 22px;
}

.btn-text {
  display: inline-block;
}

/* TELEGRAM BUTTON: Blue Pill Shadow Button (Reference Image Top Button) */
.btn-telegram {
  background: var(--telegram-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--telegram-glow), inset 0 2px 4px rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 131, 184, 0.65), inset 0 2px 4px rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

/* ANA SAYFA BUTTON: Yellow-Orange Gradient (Reference Image Bottom Button) */
.btn-main {
  background: var(--main-gradient);
  color: var(--text-dark);
  box-shadow: 0 6px 20px var(--main-glow), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 128, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  filter: brightness(1.05);
}

/* TV BUTTON: Slate-Gold Hybrid Button */
.btn-tv {
  background: var(--tv-gradient);
  color: var(--new-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--new-color);
}

.btn-tv:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #535263 0%, #32313c 100%);
  box-shadow: 0 8px 25px rgba(255, 192, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.08);
}

/* Live Activity Social Proof Feed */
.live-feed-card {
  background: rgba(30, 32, 49, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse 1.2s infinite alternate;
}

.feed-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.feed-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 140px;
  overflow: hidden;
  position: relative;
}

.feed-placeholder {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 0;
}

.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  animation: slideInFeed 0.5s ease-out forwards;
}

@keyframes slideInFeed {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.feed-user {
  font-weight: 600;
  color: var(--text-light);
}

.feed-prize {
  font-weight: 800;
  color: var(--new-color);
}

.feed-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   MODAL WINDOWS & POPUPS
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeInModal var(--transition-speed) ease-out;
}

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

.modal-card {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
  border: 2px solid var(--classic-border);
  border-radius: 28px;
  width: 100%;
  max-width: 440px;
  padding: 32px 24px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 192, 0, 0.05);
  position: relative;
  text-align: center;
  animation: scaleInModal var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleInModal {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1.5px;
  background: rgba(255, 192, 0, 0.1);
  border: 1px solid var(--new-color);
  color: var(--new-color);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.modal-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.text-gold {
  color: var(--new-color);
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Steps Flow */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 28px;
  height: 28px;
  background-color: var(--new-color);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 192, 0, 0.3);
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-content strong {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.step-content span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Modal Buttons */
.modal-cta-btn {
  width: 100%;
  height: 56px;
  background: var(--new-gradient);
  color: var(--text-dark);
  border-radius: 50px;
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 192, 0, 0.4), inset 0 2px 4px rgba(255,255,255,0.4);
  transition: transform 0.2s, box-shadow var(--transition-speed), filter var(--transition-speed);
}

.modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 192, 0, 0.6);
  filter: brightness(1.05);
}

.modal-cta-btn:active {
  transform: translateY(0);
}

.modal-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Success Card overrides */
.success-card {
  border-color: var(--new-color);
}

.success-badge {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #10b981;
}

.success-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Promo Code Box inside success popup */
.promo-code-wrapper {
  background: rgba(0, 0, 0, 0.3);
  border: 1.5px solid var(--classic-border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.wrapper-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.promo-code-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 8px 8px 14px;
}

.promo-code-field span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--new-color);
}

.code-copy-inline-btn {
  background-color: var(--classic-color);
  border: none;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.code-copy-inline-btn:hover {
  background-color: var(--new-color);
  color: var(--text-dark);
}

.copy-success-msg {
  font-size: 12px;
  color: #10b981;
  font-weight: 600;
  margin-top: 6px;
  animation: pulseText 1.5s infinite alternate;
}

@keyframes pulseText {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.redirect-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.redirect-countdown p {
  font-size: 12px;
  color: var(--text-muted);
}

.redirect-countdown p span {
  color: var(--new-color);
  font-weight: 700;
}

.spinner-small {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 192, 0, 0.2);
  border-top-color: var(--new-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.success-cta-btn {
  margin-top: 10px;
}

/* Success Checkmark Animation */
.success-animation {
  margin: 0 auto 16px;
}

.checkmark-circle {
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
  margin: 0 auto;
}

.checkmark-circle .background {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  position: absolute;
}

.checkmark-circle .checkmark {
  display: block;
}

.checkmark-circle .checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}

.checkmark-circle .checkmark:after {
  opacity: 1;
  height: 28px;
  width: 14px;
  transform-origin: left top;
  border-right: 3px solid #10b981;
  border-top: 3px solid #10b981;
  content: '';
  left: 17px;
  top: 31px;
  position: absolute;
}

@keyframes checkmark {
  0% { height: 0; width: 0; opacity: 1; }
  20% { height: 0; width: 14px; opacity: 1; }
  40% { height: 28px; width: 14px; opacity: 1; }
  100% { height: 28px; width: 14px; opacity: 1; }
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 150;
  pointer-events: none;
}

.toast {
  background-color: rgba(20, 22, 36, 0.95);
  border: 1px solid var(--classic-border);
  border-left: 4px solid var(--new-color);
  color: var(--text-light);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  font-size: 13px;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.toast.show {
  transform: translateX(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-warning {
  margin-top: 4px;
  font-weight: 600;
  color: rgba(255, 192, 0, 0.4);
}

/* ==========================================================================
   MEDIA QUERIES & MOBILE OPTIMIZATION
   ========================================================================== */

@media (max-width: 480px) {
  .logo-img {
    height: 34px;
  }
  
  .header-status {
    padding: 4px 10px;
  }
  
  .status-text {
    font-size: 11px;
  }
  
  .panel-header h2 {
    font-size: 22px;
  }
  
  .wheel-wrapper {
    width: 290px;
    height: 290px;
  }
  
  .wheel-label span {
    font-size: 17px;
  }
  
  .wheel-label.highlight span {
    font-size: 19px;
  }
  
  .wheel-spin-btn {
    width: 70px;
    height: 70px;
    font-size: 13px;
  }
  
  .pill-btn {
    height: 58px;
    font-size: 18px;
  }
  
  .btn-icon {
    font-size: 20px;
  }
  
  .modal-card {
    padding: 24px 16px 20px;
  }
  
  .modal-card h2 {
    font-size: 20px;
  }
}

/* ==========================================================================
   BETINE FIRSATLAR DÜNYASI & KAMPANYA TANITIM KARTLARI
   ========================================================================== */

.live-support-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
}

.support-check {
  color: #10b981;
  font-weight: 800;
  font-size: 16px;
}

.support-text {
  font-size: 13px;
  color: #a5a6b5;
  font-style: italic;
}

.transaction-guarantee {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(6, 7, 18, 0.6);
  border: 1.5px solid var(--new-color);
  border-radius: 50px;
  padding: 10px 22px;
  box-shadow: 0 0 15px rgba(255, 192, 0, 0.15);
}

.guarantee-icon {
  font-size: 16px;
}

.guarantee-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Campaign Promo Grid */
.promo-grid-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-bar {
  width: 4px;
  height: 22px;
  background-color: var(--new-color);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 192, 0, 0.5);
}

.section-title-wrapper h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.promo-grid-card {
  background: linear-gradient(180deg, rgba(54, 53, 65, 0.35) 0%, rgba(20, 22, 36, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
}

.promo-grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 192, 0, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 192, 0, 0.05);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.promo-grid-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--new-color);
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.promo-grid-card p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-action {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: color 0.2s, transform 0.2s;
}

.promo-grid-card:hover .card-action {
  color: var(--new-color);
}

.card-action:hover {
  transform: scale(1.05);
}

/* Modal Enhancements */
.modal-close-x {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
}

.modal-close-x:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.flex-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.modal-close-text-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s, text-decoration 0.2s;
  padding: 4px 10px;
}

.modal-close-text-btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Media Query Adjustments for Grid */
@media (max-width: 440px) {
  .promo-grid {
    grid-template-columns: 1fr; /* Stack cards on very small screens */
    gap: 12px;
  }
  
  .promo-grid-card {
    padding: 16px 12px;
  }
  
  .guarantee-pill {
    padding: 8px 16px;
  }
  
  .guarantee-text {
    font-size: 10px;
  }
}
