/* ==========================================================================
   BIST 100 & FOREX VIP TELEGRAM LANDING PAGE - CUSTOM STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d121d;
  --bg-card: rgba(17, 24, 39, 0.75);
  --border-card: rgba(31, 41, 55, 0.6);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.4);
  --accent-gold: #f59e0b;
  --accent-telegram: #229ed9;
  --accent-telegram-hover: #1b89be;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Monospace font for tickers and numbers */
.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Background Gradients */
.bg-radial-gradient {
  background: radial-gradient(circle at 50% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 90% 40%, rgba(34, 158, 217, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
              #07090e;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 14px 35px -10px rgba(16, 185, 129, 0.15);
}

/* Telegram CTA Button Pulse Glow */
.btn-telegram-pulse {
  position: relative;
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 50%, #0088cc 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.btn-telegram-pulse::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, #229ed9, #10b981);
  z-index: -1;
  opacity: 0.6;
  animation: pulseAnimation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.btn-telegram-pulse:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 136, 204, 0.75), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-telegram-pulse:active {
  transform: translateY(1px) scale(0.99);
}

@keyframes pulseAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.15;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Green Profit Badge Pulse */
.badge-live-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.badge-live-pulse::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  margin-right: 6px;
  box-shadow: 0 0 8px #10b981;
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Continuous Market Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: rgba(10, 15, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}

.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Telegram Signal Mockup Bubble */
.telegram-bubble {
  background: linear-gradient(180deg, rgba(24, 34, 53, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
  border-left: 4px solid #10b981;
  border-radius: 12px;
  position: relative;
}

/* Glow Border Effect */
.glow-border-green {
  position: relative;
}
.glow-border-green::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.5), transparent 70%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
}

/* Sticky Bottom Mobile Bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 14, 23, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #07090e;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}
