
* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}

:root {
  --primary-gold: #ffd700;
  --secondary-gold: #ffb84d;
  --accent-blue: #58a6ff;
  --dark-bg: rgba(0, 0, 0, 0.85);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,40,0.95) 100%),
              url('https://cdn.britannica.com/63/211663-050-A674D74C/Jonny-Bairstow-batting-semifinal-match-England-Australia-2019.jpg')
              no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* Animated background particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(88, 166, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.round-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5),
              0 0 80px rgba(255, 215, 0, 0.3),
              inset 0 0 20px rgba(255, 215, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 4px solid rgba(255, 215, 0, 0.3);
  animation: logoFloat 3s ease-in-out infinite;
  display: block;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .round-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .round-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 12px;
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.round-logo:hover {
  transform: scale(1.15) rotate(5deg) translateY(-5px);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.7),
              0 0 120px rgba(255, 215, 0, 0.4);
}

header { 
  text-align: center; 
  padding: 40px 20px 50px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header {
    padding: 30px 15px 40px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 10px 30px;
  }
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.15);
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #ffd700;
  animation: pulse-badge 2s ease-in-out infinite;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 480px) {
  .social-proof {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .social-proof .count {
    font-size: 16px;
  }
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.social-proof .count {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Live Member Counter */
.live-counter {
  display: inline-block;
  color: #4ade80;
  font-weight: 700;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.logo {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  margin: 15px 0;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite alternate;
  position: relative;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .logo {
    font-size: 42px;
    letter-spacing: 1px;
    margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 32px;
    letter-spacing: 0.5px;
    margin: 10px 0;
  }
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
  to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.tagline { 
  color: #d1d5db; 
  font-size: 22px; 
  margin-top: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 18px;
    margin-top: 12px;
    padding: 0 5px;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
  }
}

.hero-subtitle {
  color: #ffd700;
  font-size: 18px;
  margin-top: 18px;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  padding: 0 10px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 14px;
    margin-top: 12px;
  }
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 40px rgba(255, 204, 0, 0.6),
              0 0 0 0 rgba(255, 204, 0, 0.7),
              inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: btnPulse 2s ease-in-out infinite, btnShake 3s ease-in-out infinite;
  min-height: 64px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
  transform: scale(1);
}

@keyframes btnShake {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-1deg); }
  75% { transform: scale(1.05) rotate(1deg); }
}

@media (max-width: 768px) {
  .btn-telegram {
    padding: 16px 35px;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 25px;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  .btn-telegram {
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 20px;
    min-height: 48px;
    width: 100%;
    max-width: 320px;
  }
}

@keyframes btnPulse {
  0%, 100% { 
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.6), 
                0 0 0 0 rgba(255, 204, 0, 0.7),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }
  50% { 
    box-shadow: 0 12px 50px rgba(255, 204, 0, 0.8), 
                0 0 0 15px rgba(255, 204, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
  }
}

/* Notification Popup */
.notification-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 140, 0, 0.95) 100%);
  color: #000;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  max-width: 350px;
  display: none;
  animation: slideInRight 0.5s ease-out;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.notification-popup.show {
  display: block;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-popup .close-btn:hover {
  background: rgba(0, 0, 0, 0.3);
}

.notification-popup strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
}

.notification-popup p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.notification-popup .btn-telegram {
  margin: 0;
  padding: 12px 20px;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 768px) {
  .notification-popup {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Floating CTA Button - Always Visible */
.floating-cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: floatUp 0.5s ease-out, floatBounce 3s ease-in-out infinite;
  display: none;
}

.floating-cta-btn.show {
  display: block;
}

@keyframes floatUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-cta-btn .btn-telegram {
  margin: 0;
  padding: 16px 35px;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(255, 204, 0, 0.7),
              0 0 0 0 rgba(255, 204, 0, 0.8);
}

@media (max-width: 768px) {
  .floating-cta-btn {
    bottom: 80px;
    right: 15px;
    left: 15px;
  }
  
  .floating-cta-btn .btn-telegram {
    width: 100%;
    padding: 16px 25px;
  }
}

.btn-telegram-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  background: transparent;
  color: #ffd700;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #ffd700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .btn-telegram-secondary {
    padding: 12px 28px;
    font-size: 15px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .btn-telegram-secondary {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 44px;
    width: 100%;
    max-width: 320px;
  }
}

.btn-telegram-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-telegram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-telegram:hover::before {
  width: 300px;
  height: 300px;
}

.btn-telegram:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 50px rgba(255, 204, 0, 0.7),
              0 0 0 12px rgba(255, 204, 0, 0.15);
  animation: btnPulse 1s ease-in-out infinite, btnShake 0.3s ease-in-out infinite;
}

.btn-telegram:active {
  transform: translateY(-2px) scale(1.05);
}

.btn-telegram:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-telegram span {
  position: relative;
  z-index: 1;
}

section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    margin: 35px auto;
    padding: 30px 25px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  section {
    margin: 25px auto;
    padding: 25px 20px;
    border-radius: 16px;
  }
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

section:hover::before {
  left: 100%;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 12px;
  }
}

@media (max-width: 480px) {
  section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
  }
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  border-radius: 2px;
}

.match, .tip, .expert {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.match::before, .expert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd700, #ff8c00);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.match:hover::before, .expert:hover::before {
  transform: scaleY(1);
}

.match:hover, .tip:hover, .expert:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 215, 0, 0.3);
}

.teams { 
  font-size: 20px; 
  font-weight: 700; 
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 480px) {
  .teams {
    font-size: 18px;
  }
}

.score { 
  color: #58a6ff; 
  text-align: center; 
  font-size: 18px; 
  font-weight: 600;
  margin-top: 8px;
  text-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
  line-height: 1.5;
  word-break: break-word;
}

@media (max-width: 480px) {
  .score {
    font-size: 16px;
  }
}

.status { 
  color: #9ca3af; 
  text-align: center; 
  font-size: 15px; 
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}

@media (max-width: 480px) {
  .status {
    font-size: 14px;
  }
}

.expert h3 { 
  color: #ffd700; 
  font-size: 22px; 
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .expert h3 {
    font-size: 20px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .expert h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.expert p { 
  color: #d1d5db; 
  line-height: 1.8; 
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .expert p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .expert p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.expert b {
  color: #ffd700;
  font-weight: 700;
}

.cta-box { 
  text-align: center; 
  margin: 50px 0; 
}

.cta-text {
  text-align: center;
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .cta-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .cta-text {
    font-size: 15px;
    margin-bottom: 20px;
    padding: 0 5px;
  }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
  }
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 184, 77, 0.1) 100%);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ffb84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 36px;
  }
}

.stat-label {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .stat-label {
    font-size: 14px;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin: 25px 0;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

@media (max-width: 480px) {
  .feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
}

.feature-title {
  color: #ffd700;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.feature-desc {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .feature-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Testimonials */
.testimonial {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 4px solid #ffd700;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 215, 0, 0.2);
  font-family: serif;
}

.testimonial-text {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}

.testimonial-author {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 480px) {
  .testimonial-author {
    font-size: 14px;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95));
  padding: 20px;
  text-align: center;
  z-index: 999;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .btn-telegram {
  margin: 0;
  padding: 16px 40px;
  font-size: 16px;
  width: auto;
  max-width: none;
}

@media (max-width: 480px) {
  .sticky-cta {
    padding: 15px;
  }
  
  .sticky-cta .btn-telegram {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 20px;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 20px;
    margin: 25px 0;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    flex-direction: column;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .badge {
    font-size: 13px;
    gap: 8px;
  }
}

.badge-icon {
  font-size: 24px;
  color: #ffd700;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.25) 0%, rgba(255, 140, 0, 0.25) 100%);
  border: 2px solid rgba(255, 140, 0, 0.6);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  animation: urgencyPulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Countdown Timer */
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.2);
  padding: 8px 15px;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #ff6b6b;
}

.countdown-number {
  background: rgba(255, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .urgency-banner {
    padding: 12px 20px;
    margin: 18px 0;
  }
}

@media (max-width: 480px) {
  .urgency-banner {
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 10px;
  }
}

@keyframes urgencyPulse {
  0%, 100% { border-color: rgba(255, 140, 0, 0.5); }
  50% { border-color: rgba(255, 140, 0, 0.9); }
}

.urgency-text {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .urgency-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .urgency-text {
    font-size: 13px;
    line-height: 1.4;
  }
}

footer {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  color: #aaa;
  font-size: 15px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.6;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 20px;
    margin-top: 50px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 25px 15px;
    margin-top: 40px;
    font-size: 13px;
  }
}

footer a { 
  color: #ffd700; 
  text-decoration: none; 
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

footer a:hover {
  color: #ffb84d;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Loading animation */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.loading {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 10px;
  height: 60px;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
  .match, .tip, .expert {
    padding: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .stat-card {
    padding: 20px;
  }

  .testimonial {
    padding: 20px;
  }

  .cta-box {
    margin: 40px 0;
  }

  .cta-box p {
    font-size: 16px !important;
    padding: 0 10px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn-telegram, .btn-telegram-secondary {
    min-height: 48px;
  }
  
  .match, .expert, .feature-card, .stat-card {
    cursor: default;
  }
}

/* Prevent text selection on buttons */
.btn-telegram, .btn-telegram-secondary {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Improve focus states for accessibility */
.btn-telegram:focus-visible,
.btn-telegram-secondary:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
}

/* Loading state improvements */
.loading {
  min-height: 60px;
}

@media (max-width: 480px) {
  .loading {
    min-height: 50px;
  }
}
  