
* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent Text Overflow */
h1, h2, h3, h4, h5, h6, p, span, div {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

: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);
  
  /* Professional Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gold-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd700 100%);
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --danger-red: #ef4444;
  --info-blue: #3b82f6;
  
  /* Professional Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  
  /* Professional Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.90) 100%),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center/cover no-repeat fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-clip: border-box;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  display: block;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background: 
      linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.90) 100%),
      url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  body {
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  body {
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  body {
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 100%;
  }
}

/* Background overlay for better text readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(34, 139, 34, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body::before {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body::before {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
}

body::after {
  display: none;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: visible;
  display: block;
  -webkit-overflow-scrolling: touch;
}

/* Ensure all direct children respect container boundaries */
.container > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent horizontal overflow from any child elements */
.container * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive Container Breakpoints */
@media (min-width: 1921px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1920px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 360px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 320px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* Landscape Orientation Support */
@media (orientation: landscape) and (max-height: 500px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .container {
    width: 100%;
    max-width: 100%;
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .container {
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}

/* Print Styles */
@media print {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}

.round-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 
    0 0 60px rgba(255, 215, 0, 0.6),
    0 0 120px rgba(255, 215, 0, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 215, 0, 0.25);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 5px solid rgba(255, 215, 0, 0.4);
  animation: logoFloat 3s ease-in-out infinite;
  display: block;
  margin: 0 auto 24px;
  position: relative;
}

.round-logo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.3) 0%, 
    rgba(255, 184, 77, 0.2) 50%,
    rgba(255, 140, 0, 0.3) 100%);
  z-index: -1;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
  }
}

@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;
  }
}

@media (max-width: 360px) {
  .round-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.round-logo:hover {
  transform: scale(1.12) rotate(3deg) translateY(-8px);
  box-shadow: 
    0 0 80px rgba(255, 215, 0, 0.8),
    0 0 160px rgba(255, 215, 0, 0.5),
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}

header { 
  text-align: center; 
  padding: 56px 32px 64px;
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.12) 0%, 
      rgba(255, 255, 255, 0.08) 20%,
      rgba(255, 215, 0, 0.05) 40%,
      rgba(255, 255, 255, 0.06) 60%,
      rgba(255, 140, 0, 0.04) 80%,
      rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 40px;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 32px 96px rgba(0, 0, 0, 0.45),
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 0 60px rgba(255, 215, 0, 0.2);
  animation: headerGlow 5s ease-in-out infinite;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 215, 0, 0.1) 90deg,
    transparent 180deg,
    rgba(255, 140, 0, 0.1) 270deg,
    transparent 360deg
  );
  animation: headerRotate 20s linear infinite;
  pointer-events: none;
}

/* Removed heavy header animations for performance */

@keyframes headerGlow {
  0%, 100% { 
    box-shadow: 
      0 24px 72px rgba(0, 0, 0, 0.35),
      0 8px 24px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
  50% { 
    box-shadow: 
      0 28px 80px rgba(0, 0, 0, 0.4),
      0 12px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15),
      0 0 40px rgba(255, 215, 0, 0.15);
  }
}

@media (max-width: 768px) {
  header {
    padding: 30px 15px 40px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 10px 30px;
  }
}

.logo {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb84d 15%, 
    #ff8c00 30%, 
    #ff6600 45%, 
    #ffb84d 60%, 
    #228b22 75%, 
    #ffd700 90%, 
    #ffff00 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255, 215, 0, 0.6);
  margin: 20px 0;
  letter-spacing: 3px;
  animation: 
    glow 2s ease-in-out infinite alternate, 
    gradientShift 3s ease-in-out infinite,
    logoPulse 3s ease-in-out infinite;
  position: relative;
  line-height: 1.2;
  filter: drop-shadow(0 6px 30px rgba(255, 215, 0, 0.6));
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: perspective(1000px) rotateX(5deg) scale(1.05);
  filter: drop-shadow(0 8px 40px rgba(255, 215, 0, 0.8));
}

@keyframes logoPulse {
  0%, 100% { 
    transform: perspective(1000px) rotateX(0deg) scale(1);
  }
  50% { 
    transform: perspective(1000px) rotateX(2deg) scale(1.02);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@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;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 28px;
    letter-spacing: 0.3px;
    margin: 8px 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: #e5e7eb; 
  font-size: 24px; 
  margin-top: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 255, 255, 0.1);
  line-height: 1.6;
  padding: 0 12px;
}

@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;
  }
}

@media (max-width: 360px) {
  .tagline {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
    padding: 0 5px;
  }
}

.hero-subtitle {
  color: #ffd700;
  font-size: 19px;
  margin-top: 20px;
  font-weight: 600;
  text-shadow: 
    0 0 20px rgba(255, 215, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4);
  padding: 0 12px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 14px;
    margin-top: 12px;
    padding: 0 5px;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .hero-subtitle {
    font-size: 12px;
    margin-top: 10px;
    padding: 0 3px;
    line-height: 1.4;
  }
}

.button-container {
  margin: 40px auto;
  text-align: center;
  position: relative;
  z-index: 100;
}

/* Fixed Button Container at Bottom */
.button-container-fixed {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 15px 20px !important;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.95) 20%,
    rgba(0, 0, 0, 0.98) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 2px solid rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8),
              0 0 20px rgba(255, 215, 0, 0.2) !important;
  z-index: 99998 !important;
}

.button-container-fixed::before,
.button-container-fixed::after {
  display: none !important;
}

.button-container-fixed .urgency-banner {
  margin-bottom: 10px !important;
  padding: 10px 20px !important;
}

.button-container-fixed .click-hint,
.button-container-fixed .trust-indicators {
  display: none !important;
}

.button-container-fixed .button-wrapper {
  margin: 0 auto !important;
  max-width: 600px !important;
}

.button-container::before,
.button-container::after {
  content: '👉';
  position: absolute;
  top: 50%;
  font-size: 40px;
  animation: pointArrow 1.5s ease-in-out infinite;
  z-index: 101;
}

.button-container::before {
  left: -60px;
  transform: translateY(-50%);
}

.button-container::after {
  right: -60px;
  transform: translateY(-50%) scaleX(-1);
}

@keyframes pointArrow {
  0%, 100% { transform: translateX(0) translateY(-50%) scale(1); }
  50% { transform: translateX(10px) translateY(-50%) scale(1.2); }
}

@media (max-width: 1024px) {
  .button-container::before,
  .button-container::after {
    font-size: 35px;
  }
  .button-container::before {
    left: -50px;
  }
  .button-container::after {
    right: -50px;
  }
}

@media (max-width: 768px) {
  .button-container::before,
  .button-container::after {
    font-size: 30px;
  }
  .button-container::before {
    left: -40px;
  }
  .button-container::after {
    right: -40px;
  }
}

@media (max-width: 480px) {
  .button-container::before,
  .button-container::after {
    display: none;
  }
}

.urgency-banner-section {
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
}

.urgency-banner {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 15px;
  padding: 15px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .urgency-banner-section {
    margin: 30px auto;
    padding: 0 15px;
  }
  .urgency-banner {
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .urgency-banner-section {
    margin: 25px auto;
    padding: 0 12px;
  }
  .urgency-banner {
    padding: 10px 20px;
  }
}

.urgency-text {
  color: #ff0000;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  animation: blink 1s ease-in-out infinite, bounce 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
}

.countdown-text {
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  animation: pulseHint 2s ease-in-out infinite;
}

.button-wrapper {
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.button-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  border-radius: 60px;
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 900;
  animation: arrowBounce 1.5s ease-in-out infinite;
  z-index: 3;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(5px); }
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 60px;
}

.btn-particles::before,
.btn-particles::after {
  content: '✨';
  position: absolute;
  font-size: 20px;
  animation: particleFloat 3s ease-in-out infinite;
}

.btn-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.btn-particles::after {
  top: 60%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.click-hint {
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  animation: pulseHint 2s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hint-icon {
  font-size: 24px;
  animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.2); }
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  padding: 15px;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.trust-indicators span {
  color: #00ff00;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  animation: trustPulse 3s ease-in-out infinite;
}

.trust-indicators span:nth-child(1) { animation-delay: 0s; }
.trust-indicators span:nth-child(2) { animation-delay: 1s; }
.trust-indicators span:nth-child(3) { animation-delay: 2s; }

@keyframes trustPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.click-hint::before,
.click-hint::after {
  content: '✨';
  position: absolute;
  font-size: 20px;
  animation: sparkle 2s ease-in-out infinite;
}

.click-hint::before {
  left: -30px;
  animation-delay: 0s;
}

.click-hint::after {
  right: -30px;
  animation-delay: 1s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.btn-telegram, .btn-mega {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 0;
  background: linear-gradient(135deg, #ff0000 0%, #ff8c00 50%, #ffd700 100%);
  color: #fff;
  padding: 25px 60px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 15px 60px rgba(255, 0, 0, 0.8),
              0 0 0 0 rgba(255, 204, 0, 0.9),
              0 0 100px rgba(255, 215, 0, 0.6),
              inset 0 3px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
  animation: megaPulse 2s ease-in-out infinite;
  will-change: transform, box-shadow;
  min-height: 90px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 100;
  transform: scale(1);
  border: 4px solid rgba(255, 255, 255, 0.5);
  width: auto;
  max-width: 90%;
}

/* New Button Design - Matching Image */
.btn-new-design {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  background: linear-gradient(90deg, #ff4500 0%, #ff6347 25%, #ff8c00 50%, #ffa500 75%, #ffd700 100%) !important;
  background-size: 200% 100% !important;
  padding: 20px 50px !important;
  border-radius: 50px !important;
  border: 2px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 10px 40px rgba(255, 69, 0, 0.6),
              0 0 20px rgba(255, 140, 0, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
  min-height: 80px !important;
  animation: newButtonGradient 3s ease-in-out infinite, newButtonPulse 2s ease-in-out infinite !important;
  position: relative !important;
  overflow: hidden !important;
}

@keyframes newButtonGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes newButtonPulse {
  0%, 100% { 
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.6),
                0 0 20px rgba(255, 140, 0, 0.4);
  }
  50% { 
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.8),
                0 0 30px rgba(255, 140, 0, 0.6);
  }
}

.btn-lightning {
  position: absolute !important;
  top: 8px !important;
  right: 15px !important;
  font-size: 24px !important;
  z-index: 10 !important;
  filter: drop-shadow(0 2px 8px rgba(255, 69, 0, 0.8)) !important;
  animation: lightningFlash 1.5s ease-in-out infinite !important;
}

@keyframes lightningFlash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.btn-cricket-icon-left,
.btn-cricket-icon-right {
  font-size: 28px !important;
  z-index: 5 !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) !important;
  animation: cricketIconFloat 2s ease-in-out infinite !important;
}

.btn-cricket-icon-left {
  animation-delay: 0s !important;
}

.btn-cricket-icon-right {
  animation-delay: 1s !important;
}

@keyframes cricketIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.btn-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 5px !important;
  flex: 1 !important;
  z-index: 5 !important;
}

.btn-new-design .btn-text {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7),
              0 0 15px rgba(255, 255, 255, 0.3) !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

.btn-new-design .btn-subtext {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6) !important;
  letter-spacing: 1.5px !important;
  margin: 0 !important;
  opacity: 1 !important;
}

.btn-new-design .btn-arrow {
  font-size: 28px !important;
  font-weight: 900 !important;
  z-index: 5 !important;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
  animation: arrowMove 1.5s ease-in-out infinite !important;
}

.btn-new-design:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 20px 60px rgba(255, 69, 0, 0.9),
              0 0 40px rgba(255, 140, 0, 0.7),
              inset 0 2px 0 rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 215, 0, 0.9) !important;
}

.btn-new-design::before {
  display: none !important;
}

.btn-new-design::after {
  display: none !important;
}

.btn-mega::before {
  content: '🔥';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  /* Removed animation for performance */
  z-index: 101;
}

.btn-mega::after {
  content: '⚡';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 25px;
  /* Removed animation for performance */
  z-index: 101;
}

@keyframes firePulse {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
  50% { transform: translateX(-50%) scale(1.3) rotate(10deg); }
}

@keyframes lightning {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.5) rotate(15deg); opacity: 0.7; }
}

.btn-text {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
               0 0 20px rgba(255, 255, 255, 0.3);
  /* Removed animation for performance */
}

@keyframes textGlow {
  0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3); }
  50% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.6); }
}

.btn-subtext {
  font-size: 15px;
  font-weight: 800;
  opacity: 0.98;
  position: relative;
  z-index: 2;
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  /* Removed animation for performance */
}

@keyframes subtextPulse {
  0%, 100% { opacity: 0.98; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes megaPulse {
  0%, 100% { 
    box-shadow: 0 15px 60px rgba(255, 0, 0, 0.8), 
                0 0 0 0 rgba(255, 204, 0, 0.9),
                0 0 100px rgba(255, 215, 0, 0.6),
                inset 0 3px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 20px 80px rgba(255, 0, 0, 1), 
                0 0 0 20px rgba(255, 204, 0, 0.3),
                0 0 150px rgba(255, 215, 0, 0.8),
                inset 0 3px 0 rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
}

/* Removed heavy animations for performance */

@keyframes btnShake {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-2deg); }
  50% { transform: scale(1.08) rotate(0deg); }
  75% { transform: scale(1.05) rotate(2deg); }
}

@media (max-width: 768px) {
  .button-container-fixed {
    padding: 12px 15px !important;
  }
  .button-container-fixed .urgency-banner {
    padding: 8px 15px !important;
    margin-bottom: 8px !important;
  }
  .button-container-fixed .urgency-text {
    font-size: 14px !important;
  }
  .button-container-fixed .countdown-text {
    font-size: 12px !important;
  }
  .btn-telegram, .btn-mega {
    padding: 22px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 0;
    min-height: 80px;
    border-width: 4px;
  }
  .btn-new-design {
    padding: 18px 35px !important;
    gap: 12px !important;
    min-height: 75px !important;
  }
  .btn-new-design .btn-text {
    font-size: 18px !important;
    letter-spacing: 1.5px !important;
  }
  .btn-new-design .btn-subtext {
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }
  .btn-cricket-icon-left,
  .btn-cricket-icon-right {
    font-size: 24px !important;
  }
  .btn-lightning {
    font-size: 20px !important;
    top: 6px !important;
    right: 12px !important;
  }
  .btn-new-design .btn-arrow {
    font-size: 24px !important;
  }
  .btn-text {
    font-size: 18px;
  }
  .btn-subtext {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .urgency-text {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .countdown-text {
    font-size: 14px;
  }
  .click-hint {
    font-size: 14px;
    padding: 8px 15px;
  }
  .hint-icon {
    font-size: 20px;
  }
  .trust-indicators {
    gap: 15px;
    padding: 12px;
  }
  .trust-indicators span {
    font-size: 12px;
  }
  .urgency-banner {
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .btn-telegram, .btn-mega {
    padding: 20px 35px;
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-top: 0;
    min-height: 75px;
    width: 95%;
    max-width: 100%;
    border-width: 3px;
  }
  .btn-new-design {
    padding: 16px 25px !important;
    gap: 10px !important;
    min-height: 70px !important;
    width: 95% !important;
    max-width: 100% !important;
  }
  .btn-new-design .btn-text {
    font-size: 16px !important;
    letter-spacing: 1px !important;
  }
  .btn-new-design .btn-subtext {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
  }
  .btn-cricket-icon-left,
  .btn-cricket-icon-right {
    font-size: 20px !important;
  }
  .btn-lightning {
    font-size: 18px !important;
    top: 5px !important;
    right: 10px !important;
  }
  .btn-new-design .btn-arrow {
    font-size: 20px !important;
  }
  .btn-text {
    font-size: 16px;
  }
  .btn-subtext {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .btn-arrow {
    right: 15px;
    font-size: 24px;
  }
  .urgency-text {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .countdown-text {
    font-size: 12px;
  }
  .click-hint {
    font-size: 12px;
    margin-top: 15px;
    padding: 8px 12px;
    flex-wrap: wrap;
  }
  .hint-icon {
    font-size: 18px;
  }
  .button-container {
    margin: 30px auto;
  }
  .button-container-fixed {
    padding: 12px 15px !important;
  }
  .button-container-fixed .button-wrapper {
    max-width: 100% !important;
  }
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    width: 100% !important;
    max-width: 100% !important;
  }
  .urgency-banner {
    padding: 10px 20px;
    margin-bottom: 15px;
  }
  .trust-indicators {
    gap: 10px;
    padding: 10px;
    flex-direction: column;
  }
  .trust-indicators span {
    font-size: 11px;
  }
  .button-wrapper {
    margin: 15px 0;
  }
}

@media (max-width: 360px) {
  .btn-telegram, .btn-mega {
    padding: 18px 25px;
    font-size: 14px;
    letter-spacing: 1px;
    min-height: 70px;
    width: 98%;
    border-width: 2px;
  }
  .btn-text {
    font-size: 14px;
    line-height: 1.2;
  }
  .btn-subtext {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .btn-arrow {
    right: 10px;
    font-size: 20px;
  }
  .urgency-text {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
  }
  .countdown-text {
    font-size: 11px;
  }
  .click-hint {
    font-size: 11px;
    margin-top: 12px;
    padding: 6px 10px;
    gap: 5px;
  }
  .hint-icon {
    font-size: 16px;
  }
  .button-container {
    margin: 25px auto;
  }
  .urgency-banner {
    padding: 8px 15px;
    margin-bottom: 12px;
  }
  .trust-indicators {
    gap: 8px;
    padding: 8px;
  }
  .trust-indicators span {
    font-size: 10px;
  }
  .button-wrapper {
    margin: 12px 0;
  }
  .button-glow {
    width: 110%;
    height: 110%;
  }
}

@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);
  }
}

.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, .btn-mega:hover {
  transform: translateY(-15px) scale(1.22) rotate(1deg) !important;
  box-shadow: 
    0 40px 150px rgba(255, 0, 0, 1.2), 
    0 0 0 40px rgba(255, 204, 0, 0.6),
    0 0 300px rgba(255, 215, 0, 1.2),
    0 0 400px rgba(255, 140, 0, 0.8),
    0 0 500px rgba(255, 0, 0, 0.4),
    inset 0 5px 0 rgba(255, 255, 255, 0.8),
    inset 0 -5px 0 rgba(0, 0, 0, 0.4) !important;
  animation: 
    megaPulse 0.3s ease-in-out infinite, 
    megaBounce 0.3s ease-in-out infinite, 
    megaGlow 0.4s ease-in-out infinite,
    gradientShift 1s ease-in-out infinite,
    buttonShake 0.5s ease-in-out infinite !important;
  border-color: rgba(255, 255, 255, 1);
  border-width: 7px;
  background: linear-gradient(135deg, 
    #ff4444 0%, 
    #ff6666 20%, 
    #ff8888 40%, 
    #ffaa00 60%, 
    #ffcc00 80%, 
    #ffff00 100%);
  background-size: 200% 200%;
  padding: 32px 80px;
  filter: brightness(1.2) saturate(1.3);
}

@keyframes buttonShake {
  0%, 100% { transform: translateY(-15px) scale(1.22) rotate(1deg); }
  25% { transform: translateY(-15px) scale(1.22) rotate(-1deg); }
  50% { transform: translateY(-15px) scale(1.22) rotate(1deg); }
  75% { transform: translateY(-15px) scale(1.22) rotate(-0.5deg); }
}

.btn-telegram:active, .btn-mega:active {
  transform: translateY(-8px) scale(1.12) !important;
  box-shadow: 0 20px 80px rgba(255, 0, 0, 0.9), 
              0 0 0 20px rgba(255, 204, 0, 0.4),
              0 0 200px rgba(255, 215, 0, 0.9) !important;
}

.btn-telegram span {
  position: relative;
  z-index: 1;
}

section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 48px;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.12) 0%, 
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.05) 100%);
  border-radius: 28px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    margin: 35px auto;
    padding: 36px 28px;
    border-radius: 24px;
  }
  header {
    padding: 40px 20px 48px;
    border-radius: 28px;
  }
}

@media (max-width: 480px) {
  section {
    margin: 25px auto;
    padding: 28px 20px;
    border-radius: 20px;
  }
  header {
    padding: 32px 16px 40px;
    border-radius: 24px;
  }
  footer {
    padding: 36px 24px;
    border-radius: 20px 20px 0 0;
  }
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    transparent 100%);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

section::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.3) 0%, 
    rgba(255, 140, 0, 0.2) 50%,
    rgba(255, 215, 0, 0.3) 100%);
  border-radius: 30px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  filter: blur(10px);
}

section:hover::before {
  left: 100%;
}

section:hover::after {
  opacity: 0.6;
}

section:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 
    0 36px 100px rgba(0, 0, 0, 0.6),
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 0 60px rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.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: 120px;
  height: 5px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ffd700 20%, 
    #ffb84d 50%, 
    #ffd700 80%, 
    transparent 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.match, .expert {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%);
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.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, .expert:hover {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 100%);
  transform: translateX(8px) translateY(-6px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1.5px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: 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: 768px) {
  .teams {
    font-size: 19px;
  }
  .score {
    font-size: 17px;
  }
  .status {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .teams {
    font-size: 18px;
  }
  .score {
    font-size: 16px;
  }
  .status {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .teams {
    font-size: 16px;
  }
  .score {
    font-size: 14px;
  }
  .status {
    font-size: 12px;
  }
  .match, .expert {
    padding: 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;
  }
  .expert p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .expert h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .expert p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .expert h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .expert p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.expert p { 
  color: #d1d5db; 
  line-height: 1.8; 
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .expert p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.expert b {
  color: #ffd700;
  font-weight: 700;
}

.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;
  }
}

@media (max-width: 360px) {
  .stats-grid {
    gap: 12px;
    margin: 18px 0;
  }
  .stat-card {
    padding: 18px;
  }
  .stat-number {
    font-size: 32px;
  }
  .stat-label {
    font-size: 13px;
  }
}

.stat-card {
  background: 
    linear-gradient(135deg, 
      rgba(255, 215, 0, 0.22) 0%, 
      rgba(255, 184, 77, 0.16) 30%,
      rgba(255, 140, 0, 0.14) 60%,
      rgba(255, 184, 77, 0.12) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  padding: 40px 28px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.45);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 
    0 12px 36px rgba(255, 215, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 
    0 28px 70px rgba(255, 215, 0, 0.5),
    0 0 0 3px rgba(255, 215, 0, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 80px rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.7);
  background: 
    linear-gradient(135deg, 
      rgba(255, 215, 0, 0.3) 0%, 
      rgba(255, 184, 77, 0.22) 30%,
      rgba(255, 140, 0, 0.20) 60%,
      rgba(255, 184, 77, 0.18) 100%);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(255, 215, 0, 0.2) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(255, 215, 0, 0.4),
    0 0 0 2px rgba(255, 215, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 60px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.25) 0%, 
    rgba(255, 184, 77, 0.18) 50%,
    rgba(255, 140, 0, 0.16) 100%);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  transform: translateX(100%);
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.6));
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ffb84d, #ff8c00, #ffb84d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: numberGradient 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.4));
}

@keyframes numberGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@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: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 360px) {
  .features-grid {
    gap: 15px;
  }
  .feature-card {
    padding: 20px 15px;
  }
  .feature-icon {
    font-size: 36px;
  }
  .feature-title {
    font-size: 16px;
  }
  .feature-desc {
    font-size: 13px;
  }
}

.feature-card {
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.16) 0%, 
      rgba(255, 255, 255, 0.12) 30%,
      rgba(255, 215, 0, 0.06) 50%,
      rgba(255, 255, 255, 0.10) 70%,
      rgba(255, 255, 255, 0.14) 100%),
    radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  padding: 42px 32px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-16px) scale(1.05);
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.25) 0%, 
      rgba(255, 255, 255, 0.20) 30%,
      rgba(255, 215, 0, 0.12) 50%,
      rgba(255, 255, 255, 0.18) 70%,
      rgba(255, 255, 255, 0.22) 100%);
  box-shadow: 
    0 32px 72px rgba(0, 0, 0, 0.55),
    0 0 0 3px rgba(255, 215, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 60px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 215, 0, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 215, 0, 0.1) 90deg,
    transparent 180deg,
    rgba(255, 140, 0, 0.1) 270deg,
    transparent 360deg
  );
  animation: rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 0.3;
}

.feature-icon {
  font-size: 56px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
  animation: iconFloat 3s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.feature-card:hover .feature-icon {
  transform: translateY(-12px) scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
}

@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;
  }
}

/* Premium Tips Section - Premium Design */
#premium-tips {
  margin: 60px auto;
  padding: 60px 40px;
  background: 
    linear-gradient(135deg, 
      rgba(0, 0, 0, 0.95) 0%, 
      rgba(20, 20, 40, 0.98) 50%,
      rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-radius: 40px;
  box-shadow: 
    0 40px 120px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    0 0 80px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

#premium-tips::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 215, 0, 0.1) 90deg,
    transparent 180deg,
    rgba(255, 140, 0, 0.1) 270deg,
    transparent 360deg
  );
  animation: premiumRotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes premiumRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#premium-tips > * {
  position: relative;
  z-index: 1;
}

.premium-header-banner {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.2) 0%, 
    rgba(255, 140, 0, 0.15) 50%,
    rgba(255, 215, 0, 0.2) 100%);
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.premium-crown {
  font-size: 60px;
  margin-bottom: 15px;
  animation: crownFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.8));
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

#premium-tips h2 {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 30%, #ff8c00 60%, #ffd700 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  animation: premiumTitleGlow 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  letter-spacing: 2px;
}

@keyframes premiumTitleGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.premium-subtitle {
  color: #ffd700;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  letter-spacing: 1px;
}

.premium-badge-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.premium-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 140, 0, 0.25) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
}

.premium-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.premium-package-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 215, 0, 0.08) 50%,
    rgba(255, 255, 255, 0.10) 70%,
    rgba(255, 255, 255, 0.15) 100%);
  border: 3px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 50px rgba(255, 215, 0, 0.2);
}

.premium-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ffd700 20%, 
    #ffb84d 50%, 
    #ff8c00 80%, 
    transparent 100%);
  animation: premiumShine 3s ease-in-out infinite;
}

@keyframes premiumShine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.premium-package-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.7),
    0 0 0 3px rgba(255, 215, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 80px rgba(255, 215, 0, 0.4);
}

.premium-best-value {
  border: 4px solid rgba(255, 215, 0, 0.6) !important;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.25) 0%, 
    rgba(255, 255, 255, 0.18) 30%,
    rgba(255, 215, 0, 0.15) 50%,
    rgba(255, 255, 255, 0.18) 70%,
    rgba(255, 215, 0, 0.25) 100%) !important;
  box-shadow: 
    0 25px 70px rgba(255, 215, 0, 0.4),
    0 0 0 2px rgba(255, 215, 0, 0.5),
    inset 0 3px 0 rgba(255, 255, 255, 0.3),
    0 0 100px rgba(255, 215, 0, 0.3) !important;
  position: relative;
}

.premium-best-value::after {
  content: '⭐';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 50px;
  animation: starRotate 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.8));
  z-index: 10;
}

@keyframes starRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.premium-badge-top {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.4) 0%, rgba(255, 140, 0, 0.35) 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 140, 0, 0.5);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  z-index: 5;
}

.premium-most-popular {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.4) 0%, 
    rgba(255, 140, 0, 0.3) 50%,
    rgba(255, 215, 0, 0.4) 100%) !important;
  animation: popularPulse 3s ease-in-out infinite;
  border-color: rgba(255, 215, 0, 0.8) !important;
}

@keyframes popularPulse {
  0%, 100% { 
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4),
                0 0 0 2px rgba(255, 215, 0, 0.5),
                0 0 100px rgba(255, 215, 0, 0.3);
  }
  50% { 
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.6),
                0 0 0 3px rgba(255, 215, 0, 0.7),
                0 0 120px rgba(255, 215, 0, 0.5);
  }
}

.premium-package-icon {
  font-size: 70px;
  text-align: center;
  margin: 20px 0 15px;
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.6));
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

.premium-package-title {
  color: #ffd700;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.premium-price-container {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, 
    rgba(0, 255, 0, 0.15) 0%, 
    rgba(0, 255, 0, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
}

.premium-currency {
  color: #00ff00;
  font-size: 32px;
  font-weight: 800;
  vertical-align: top;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.premium-price {
  color: #00ff00;
  font-size: 48px;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
  line-height: 1;
  display: inline-block;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 25px rgba(0, 255, 0, 0.8); }
  50% { text-shadow: 0 0 35px rgba(0, 255, 0, 1), 0 0 50px rgba(0, 255, 0, 0.6); }
}

.premium-value-badge {
  text-align: center;
  color: #ffd700;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.premium-savings {
  background: rgba(0, 255, 0, 0.2) !important;
  color: #00ff00 !important;
  border-color: rgba(0, 255, 0, 0.4) !important;
  animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.premium-features {
  margin-bottom: 30px;
  min-height: 200px;
}

.premium-feature-item {
  color: #d1d5db;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.premium-feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.premium-check {
  color: #00ff00;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  flex-shrink: 0;
}

.btn-premium-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%);
  background-size: 200% 200%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 15px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 
    0 10px 40px rgba(37, 211, 102, 0.6),
    0 0 0 0 rgba(37, 211, 102, 0.8),
    0 0 50px rgba(37, 211, 102, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6),
                0 0 0 0 rgba(37, 211, 102, 0.8),
                0 0 50px rgba(37, 211, 102, 0.5);
    background-position: 0% 50%;
  }
  50% { 
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.8),
                0 0 0 10px rgba(37, 211, 102, 0.4),
                0 0 70px rgba(37, 211, 102, 0.7);
    background-position: 100% 50%;
  }
}

.btn-premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-premium-cta:hover::before {
  left: 100%;
}

.btn-premium-cta:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(37, 211, 102, 0.9),
    0 0 0 15px rgba(37, 211, 102, 0.5),
    0 0 100px rgba(37, 211, 102, 0.8);
  background-position: 100% 50%;
}

.btn-premium-best {
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 50%, #ff8c00 100%) !important;
  color: #000 !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 
    0 12px 50px rgba(255, 215, 0, 0.7),
    0 0 0 0 rgba(255, 215, 0, 0.9),
    0 0 60px rgba(255, 215, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.5) !important;
  animation: bestButtonPulse 2s ease-in-out infinite !important;
}

@keyframes bestButtonPulse {
  0%, 100% { 
    box-shadow: 0 12px 50px rgba(255, 215, 0, 0.7),
                0 0 0 0 rgba(255, 215, 0, 0.9),
                0 0 60px rgba(255, 215, 0, 0.6);
  }
  50% { 
    box-shadow: 0 18px 60px rgba(255, 215, 0, 0.9),
                0 0 0 12px rgba(255, 215, 0, 0.5),
                0 0 80px rgba(255, 215, 0, 0.8);
  }
}

.btn-premium-icon {
  font-size: 24px;
}

.btn-premium-text {
  flex: 1;
  text-align: center;
}

.btn-premium-arrow {
  font-size: 24px;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.premium-info-section {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.premium-info-card,
.premium-disclaimer-card {
  padding: 25px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-info-card {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.15) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.premium-disclaimer-card {
  background: linear-gradient(135deg, 
    rgba(255, 0, 0, 0.15) 0%, 
    rgba(255, 140, 0, 0.1) 100%);
  border-color: rgba(255, 0, 0, 0.3);
}

.premium-info-icon,
.premium-disclaimer-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
}

.premium-info-card p,
.premium-disclaimer-card p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.premium-disclaimer-card strong {
  color: #ffd700;
  font-weight: 800;
}

@media (max-width: 768px) {
  #premium-tips {
    padding: 40px 25px;
    margin: 40px auto;
  }
  #premium-tips h2 {
    font-size: 32px;
  }
  .premium-subtitle {
    font-size: 18px;
  }
  .premium-packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .premium-package-card {
    padding: 30px 20px;
  }
  .premium-package-title {
    font-size: 20px;
  }
  .premium-price {
    font-size: 40px;
  }
  .premium-feature-item {
    font-size: 15px;
  }
  .btn-premium-cta {
    padding: 18px 25px;
    font-size: 16px;
  }
  .premium-info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #premium-tips {
    padding: 30px 15px;
  }
  #premium-tips h2 {
    font-size: 28px;
  }
  .premium-subtitle {
    font-size: 16px;
  }
  .premium-package-icon {
    font-size: 50px;
  }
  .premium-package-title {
    font-size: 18px;
  }
  .premium-price {
    font-size: 36px;
  }
  .premium-currency {
    font-size: 28px;
  }
  .premium-feature-item {
    font-size: 14px;
    line-height: 1.6;
  }
  .btn-premium-cta {
    padding: 16px 20px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .btn-premium-text {
    font-size: 13px;
  }
}

/* Testimonials */
.testimonial {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  border-left: 5px solid #ffd700;
  position: relative;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 24px;
  font-size: 100px;
  color: rgba(255, 215, 0, 0.25);
  font-family: serif;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-left-width: 6px;
}

.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;
  }
  .testimonial-author {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .testimonial-author {
    font-size: 14px;
  }
  .testimonial {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .testimonial-author {
    font-size: 12px;
  }
  .testimonial {
    padding: 15px;
  }
}

.testimonial-author {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 480px) {
  .testimonial-author {
    font-size: 14px;
  }
}

/* Trust Badges */
/* Live Joining Container */
.live-joining-container {
  background: 
    linear-gradient(135deg, 
      rgba(255, 0, 0, 0.25) 0%, 
      rgba(255, 50, 0, 0.20) 25%,
      rgba(255, 140, 0, 0.18) 50%,
      rgba(255, 50, 0, 0.20) 75%,
      rgba(255, 0, 0, 0.22) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
  border: 3px solid rgba(255, 0, 0, 0.55);
  border-radius: 28px;
  padding: 32px;
  margin: 30px auto 35px;
  max-width: 650px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 
    0 20px 60px rgba(255, 0, 0, 0.45),
    0 12px 36px rgba(255, 0, 0, 0.35),
    0 0 0 2px rgba(255, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 0 50px rgba(255, 0, 0, 0.3);
  animation: liveContainerPulse 3s ease-in-out infinite;
  z-index: 50;
}

/* Removed heavy glow animation for performance */

@keyframes liveContainerPulse {
  0%, 100% { 
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% { 
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 16px;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  animation: liveDotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

@keyframes liveDotPulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 0, 0, 1);
  }
}

.total-joined {
  text-align: center;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.total-label {
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.total-count {
  color: #00ff00;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
  animation: totalCountGlow 2s ease-in-out infinite;
}

@keyframes totalCountGlow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    transform: scale(1);
  }
  50% { 
    text-shadow: 0 0 30px rgba(0, 255, 0, 1);
    transform: scale(1.03);
  }
}

.joining-stats {
  text-align: center;
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.joining-count {
  color: #00ff00;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
  animation: countGlow 2s ease-in-out infinite;
}

@keyframes countGlow {
  0%, 100% { 
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    transform: scale(1);
  }
  50% { 
    text-shadow: 0 0 25px rgba(0, 255, 0, 1);
    transform: scale(1.05);
  }
}

.time-ago {
  color: #ffd700;
  font-weight: 800;
}

.recent-joiners {
  min-height: 60px;
  position: relative;
}

.joiner-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-left: 4px solid #00ff00;
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(0, 255, 0, 0.2);
  animation: joinerSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.joiner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.joiner-item:hover {
  transform: translateX(4px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 30px rgba(0, 255, 0, 0.3);
  border-left-width: 5px;
}

.joiner-item:hover::before {
  left: 100%;
}

@keyframes joinerSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .live-joining-container {
    padding: 15px;
    margin: 25px auto;
    border-radius: 16px;
  }
  .live-indicator {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .live-dot {
    width: 10px;
    height: 10px;
  }
  .total-joined {
    padding: 10px;
    margin-bottom: 12px;
  }
  .total-label {
    font-size: 14px;
  }
  .total-count {
    font-size: 26px;
  }
  .joining-stats {
    font-size: 16px;
  }
  .joining-count {
    font-size: 24px;
  }
  .joiner-item {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .live-joining-container {
    padding: 12px;
    margin: 20px auto;
    border-radius: 14px;
  }
  .live-indicator {
    font-size: 12px;
    margin-bottom: 10px;
    gap: 6px;
  }
  .live-dot {
    width: 8px;
    height: 8px;
  }
  .total-joined {
    padding: 8px;
    margin-bottom: 10px;
  }
  .total-label {
    font-size: 12px;
    margin-right: 6px;
  }
  .total-count {
    font-size: 22px;
  }
  .joining-stats {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .joining-count {
    font-size: 20px;
  }
  .joiner-item {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 8px;
  }
  .recent-joiners {
    min-height: 50px;
  }
}

@media (max-width: 360px) {
  .total-joined {
    padding: 6px;
    margin-bottom: 8px;
  }
  .total-label {
    font-size: 11px;
    margin-right: 4px;
  }
  .total-count {
    font-size: 18px;
  }
  .joining-stats {
    font-size: 12px;
  }
  .joining-count {
    font-size: 18px;
  }
  .joiner-item {
    font-size: 12px;
    padding: 6px 10px;
  }
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.06) 0%, 
    transparent 50%,
    rgba(255, 255, 255, 0.04) 100%);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .trust-badges {
    gap: 25px;
    margin: 28px 0;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 20px;
    margin: 25px 0;
    padding: 15px;
  }
  .badge {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    flex-direction: column;
  }
  .badge {
    font-size: 12px;
    gap: 8px;
  }
  .badge-icon {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .trust-badges {
    gap: 12px;
    margin: 18px 0;
    padding: 8px;
  }
  .badge {
    font-size: 11px;
    gap: 6px;
  }
  .badge-icon {
    font-size: 18px;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 16px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

@media (max-width: 480px) {
  .badge {
    font-size: 13px;
    gap: 8px;
  }
}

.badge-icon {
  font-size: 24px;
  color: #ffd700;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
  }
  50% { 
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.7));
  }
}

.badge:hover .badge-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.8));
}

footer {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%);
  color: #d1d5db;
  font-size: 15px;
  margin-top: 80px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  line-height: 1.7;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px 24px 0 0;
  box-shadow: 
    0 -8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@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;
  }
}

@media (max-width: 360px) {
  footer {
    padding: 20px 12px;
    margin-top: 35px;
    font-size: 12px;
    line-height: 1.5;
  }
  footer p {
    font-size: 11px;
  }
}

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, .expert {
    padding: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .stat-card {
    padding: 20px;
  }

  .testimonial {
    padding: 20px;
  }

}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn-telegram, .btn-mega {
    min-height: 48px;
    padding: 18px 30px;
  }
  
  .match, .expert, .feature-card, .stat-card {
    cursor: default;
  }
  
  .floating-btn {
    min-height: 44px;
    padding: 16px 28px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .round-logo {
    width: 120px;
    height: 120px;
  }
  .logo {
    font-size: 36px;
  }
  .tagline {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .button-container {
    margin: 20px auto;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }
  .round-logo {
    width: 100px;
    height: 100px;
  }
  .logo {
    font-size: 24px;
  }
  .tagline {
    font-size: 12px;
  }
  .hero-subtitle {
    font-size: 11px;
  }
  .btn-telegram, .btn-mega {
    padding: 16px 20px;
    font-size: 12px;
    min-height: 65px;
  }
  .btn-text {
    font-size: 12px;
  }
  .btn-subtext {
    font-size: 9px;
  }
  section {
    padding: 20px 15px;
  }
  section h2 {
    font-size: 20px;
  }
}

/* Prevent text selection on buttons */
.btn-telegram, .btn-mega, .floating-btn {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Floating Sticky Button */
.floating-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  z-index: 99999;
  animation: floatBounce 2s ease-in-out infinite;
  pointer-events: none;
}

.floating-button-container * {
  pointer-events: auto;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff0000 0%, #ff3333 25%, #ff8c00 50%, #ffaa00 75%, #ffd700 100%);
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.9),
              0 0 0 0 rgba(255, 204, 0, 1),
              0 0 80px rgba(255, 215, 0, 0.7),
              0 0 120px rgba(255, 140, 0, 0.4),
              inset 0 3px 0 rgba(255, 255, 255, 0.5),
              inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  animation: floatPulse 1.2s ease-in-out infinite, floatGlow 1.8s ease-in-out infinite, floatShake 3s ease-in-out infinite;
  border: 4px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: fit-content;
}

.floating-btn::before {
  content: '🔥';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 20px;
  animation: fireFloat 1.5s ease-in-out infinite;
  z-index: 1;
}

.floating-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: floatShine 2s ease-in-out infinite;
}

@keyframes floatShake {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-2deg); }
  75% { transform: translateY(-5px) rotate(2deg); }
}

@keyframes fireFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-5px) scale(1.2) rotate(10deg); }
}

@keyframes floatShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes floatPulse {
  0%, 100% { 
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.8), 
                0 0 0 0 rgba(255, 204, 0, 0.9),
                0 0 60px rgba(255, 215, 0, 0.6);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 15px 60px rgba(255, 0, 0, 1), 
                0 0 0 15px rgba(255, 204, 0, 0.3),
                0 0 100px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
  }
}

@keyframes floatGlow {
  0%, 100% { 
    filter: brightness(1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  }
  50% { 
    filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 215, 0, 1));
  }
}

.floating-btn:hover {
  transform: scale(1.2) translateY(-8px) !important;
  box-shadow: 0 25px 100px rgba(255, 0, 0, 1), 
              0 0 0 25px rgba(255, 204, 0, 0.5),
              0 0 150px rgba(255, 215, 0, 1),
              0 0 200px rgba(255, 140, 0, 0.6) !important;
  animation: floatPulse 0.4s ease-in-out infinite, floatGlow 0.6s ease-in-out infinite !important;
  background: linear-gradient(135deg, #ff4444 0%, #ff5555 25%, #ffaa00 50%, #ffbb00 75%, #ffff00 100%);
  border-width: 5px;
  padding: 22px 45px;
}

@media (max-width: 768px) {
  .floating-button-container {
    bottom: 15px;
    right: 15px;
    left: auto;
  }
  .floating-btn {
    padding: 16px 28px;
    font-size: 14px;
    letter-spacing: 2px;
    width: auto;
    min-width: fit-content;
  }
  .scroll-to-top {
    bottom: 85px;
  }
}

@media (max-width: 480px) {
  .floating-button-container {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }
  .floating-btn {
    padding: 16px 24px;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
    letter-spacing: 1.5px;
    text-align: center;
  }
  .scroll-to-top {
    bottom: 75px;
    right: 10px;
  }
}

@media (max-width: 360px) {
  .floating-button-container {
    bottom: 8px;
    right: 8px;
    left: 8px;
    max-width: calc(100vw - 16px);
  }
  .floating-btn {
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    width: 100%;
    max-width: 100%;
  }
  .floating-btn::before {
    font-size: 16px;
    top: -8px;
    left: 8px;
  }
  .scroll-to-top {
    bottom: 70px;
    right: 8px;
  }
}

/* Improve focus states for accessibility */
.btn-telegram: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;
  }
}

/* Error Boundary */
.error-boundary {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(15,23,42,0.98) 100%);
}

.error-content {
  text-align: center;
  max-width: 500px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  padding: 48px 32px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.error-content h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 16px;
}

.error-content p {
  color: #d1d5db;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.error-retry-btn {
  background: linear-gradient(135deg, #ff0000 0%, #ff8c00 50%, #ffd700 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}

.error-retry-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.7);
}

/* Loading Spinner */
.loading-spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #ffd700;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: #ff8c00;
}

.spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  border-top-color: #ff0000;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-message {
  color: #ffd700;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Animated Section */
.animated-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animated-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
  
/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.faq-item.active {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.18) 0%, 
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 215, 0, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  gap: 20px;
}

.faq-icon {
  font-size: 24px;
  font-weight: 900;
  color: #ffd700;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
  animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-item {
    padding: 16px 20px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq-item {
    padding: 14px 16px;
  }
  .faq-question {
    font-size: 15px;
    gap: 12px;
  }
  .faq-icon {
    font-size: 20px;
    min-width: 24px;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff0000 0%, #ff8c00 50%, #ffd700 100%);
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 24px rgba(255, 0, 0, 0.6),
    0 0 0 0 rgba(255, 204, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  animation: scrollButtonPulse 2s ease-in-out infinite;
}

@keyframes scrollButtonPulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(255, 0, 0, 0.6),
      0 0 0 0 rgba(255, 204, 0, 0.8),
      0 0 40px rgba(255, 215, 0, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 
      0 12px 32px rgba(255, 0, 0, 0.8),
      0 0 0 8px rgba(255, 204, 0, 0.3),
      0 0 60px rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
  }
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.15);
  box-shadow: 
    0 16px 40px rgba(255, 0, 0, 0.9),
    0 0 0 12px rgba(255, 204, 0, 0.5),
    0 0 80px rgba(255, 215, 0, 0.8);
  background: linear-gradient(135deg, #ff4444 0%, #ffaa00 50%, #ffff00 100%);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 90px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 80px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Recent Predictions */
.predictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.prediction-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%);
  padding: 24px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.prediction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00ff00, #ffd700);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.prediction-card:hover::before {
  transform: scaleY(1);
}

.prediction-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1.5px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.prediction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.prediction-tournament {
  color: #ffd700;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prediction-date {
  color: #9ca3af;
  font-size: 12px;
}

.prediction-match {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.prediction-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.prediction-text {
  color: #d1d5db;
  font-size: 14px;
}

.prediction-status {
  color: #00ff00;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

@media (max-width: 768px) {
  .predictions-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .prediction-card {
    padding: 20px;
  }
  .prediction-match {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .predictions-grid {
    grid-template-columns: 1fr;
  }
  .prediction-card {
    padding: 18px;
  }
}

/* Social Share */
.social-share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
  max-width: 600px;
  margin: 30px auto;
}

.social-share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-share-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--social-color);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-share-btn:hover::before {
  opacity: 0.2;
}

.social-share-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 2px var(--social-color),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--social-color);
}

.social-icon {
  font-size: 36px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.social-share-btn:hover .social-icon {
  transform: scale(1.2) rotate(5deg);
}

.social-name {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .social-share-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .social-share-btn {
    padding: 20px 16px;
  }
  .social-icon {
    font-size: 32px;
  }
  .social-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .social-share-grid {
    grid-template-columns: 1fr;
  }
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.countdown-item {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.2) 0%, 
    rgba(255, 184, 77, 0.15) 50%,
    rgba(255, 140, 0, 0.1) 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  min-width: 100px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 8px 24px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(255, 215, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 
      0 12px 32px rgba(255, 215, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 40px rgba(255, 215, 0, 0.3);
  }
}

.countdown-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ffb84d, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.countdown-label {
  color: #ffd700;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-separator {
  font-size: 36px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (max-width: 768px) {
  .countdown-container {
    gap: 15px;
  }
  .countdown-item {
    padding: 24px 20px;
    min-width: 80px;
  }
  .countdown-number {
    font-size: 36px;
  }
  .countdown-label {
    font-size: 12px;
  }
  .countdown-separator {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    gap: 10px;
  }
  .countdown-item {
    padding: 20px 15px;
    min-width: 70px;
  }
  .countdown-number {
    font-size: 28px;
  }
  .countdown-label {
    font-size: 11px;
  }
  .countdown-separator {
    font-size: 24px;
  }
}

/* Skip to Main Content - Accessibility */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 100%);
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 900;
  font-size: 16px;
  border-radius: 0 0 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 0;
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

/* Professional Loading States */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Professional Focus States */
*:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 3px;
}

/* Print Styles */
@media print {
  .floating-button-container,
  .scroll-to-top,
  .button-container {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
  
  section {
    page-break-inside: avoid;
    background: #fff !important;
    box-shadow: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .feature-card,
  .stat-card,
  .testimonial {
    border-width: 3px;
    border-color: #fff;
  }
  
  .btn-telegram,
  .btn-mega {
    border-width: 5px;
    border-color: #fff;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.sr-only {
  font-size: 0;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-desc {
  text-align: center;
  color: #d1d5db;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.loading-spacing {
  margin-top: 15px;
}

.countdown-cta {
  text-align: center;
  margin-top: 20px;
}

.countdown-cta .btn-telegram {
  display: inline-block;
}

.accuracy-badge {
  text-align: center;
  margin-top: 20px;
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
}

.footer-keywords {
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}

.scroll-to-top {
  display: none;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
  padding: 15px;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.1) 100%);
  color: #00ff00;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 0, 0.3);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
}

.hero-badge:nth-child(1) { animation-delay: 0s; }
.hero-badge:nth-child(2) { animation-delay: 0.5s; }
.hero-badge:nth-child(3) { animation-delay: 1s; }
.hero-badge:nth-child(4) { animation-delay: 1.5s; }

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-badges {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Social Proof */
.social-proof-section {
  margin: 30px auto;
  max-width: 700px;
  padding: 0 20px;
  text-align: center;
}

.social-proof {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: proofSlide 0.6s ease-out;
}

@keyframes proofSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-icon {
  font-size: 20px;
  animation: iconSpin 2s ease-in-out infinite;
}

@keyframes iconSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.1); }
}

.proof-text {
  color: #ffd700;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .social-proof-section {
    margin: 25px auto;
    padding: 0 15px;
  }
  .social-proof {
    flex-direction: column;
    gap: 12px;
  }
  .proof-item {
    padding: 10px 16px;
  }
  .proof-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .social-proof-section {
    margin: 20px auto;
    padding: 0 12px;
  }
  .social-proof {
    gap: 10px;
  }
  .proof-item {
    padding: 8px 14px;
  }
  .proof-text {
    font-size: 12px;
  }
}

/* Enhanced H1 for SEO */
h1 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffb84d 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

/* Stats Highlight */
.stats-highlight {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  min-width: 150px;
  transition: all 0.4s ease;
}

.highlight-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.highlight-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.highlight-label {
  display: block;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-highlight {
    gap: 20px;
  }
  .highlight-item {
    min-width: 120px;
    padding: 15px;
  }
  .highlight-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-highlight {
    flex-direction: column;
    gap: 15px;
  }
  .highlight-item {
    width: 100%;
    max-width: 250px;
  }
}

/* Removed heavy container effects for performance */

/* Enhanced Button Glow Effect */
.button-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, 
    rgba(255, 215, 0, 0.6) 0%, 
    rgba(255, 140, 0, 0.4) 30%,
    rgba(255, 0, 0, 0.3) 60%,
    transparent 80%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

/* Removed rotation animation for performance */

/* Enhanced Particle Effects */
.btn-particles::before,
.btn-particles::after {
  content: '✨';
  position: absolute;
  font-size: 24px;
  /* Removed heavy particle animations for performance */
}

@keyframes particleRotate {
  from { transform: translateY(0) scale(0.5) rotate(0deg); }
  to { transform: translateY(-20px) scale(1) rotate(360deg); }
}

/* Enhanced Logo Animation */
.round-logo {
  animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite, logoPulse 5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { 
    box-shadow: 
      0 0 60px rgba(255, 215, 0, 0.6),
      0 0 120px rgba(255, 215, 0, 0.4),
      0 20px 40px rgba(0, 0, 0, 0.4),
      inset 0 0 30px rgba(255, 215, 0, 0.25);
  }
  50% { 
    box-shadow: 
      0 0 80px rgba(255, 215, 0, 0.8),
      0 0 160px rgba(255, 215, 0, 0.6),
      0 30px 60px rgba(0, 0, 0, 0.5),
      inset 0 0 40px rgba(255, 215, 0, 0.35);
  }
}

/* Enhanced Urgency Banner */
.urgency-banner {
  background: 
    linear-gradient(135deg, 
      rgba(255, 0, 0, 0.3) 0%, 
      rgba(255, 50, 0, 0.25) 30%,
      rgba(255, 140, 0, 0.22) 60%,
      rgba(255, 0, 0, 0.28) 100%);
  border: 2px solid rgba(255, 140, 0, 0.4);
  border-radius: 18px;
  padding: 18px 35px;
  margin-bottom: 25px;
  box-shadow: 
    0 8px 30px rgba(255, 0, 0, 0.4),
    0 0 0 1px rgba(255, 140, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    0 0 40px rgba(255, 0, 0, 0.3);
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { 
    box-shadow: 
      0 8px 30px rgba(255, 0, 0, 0.4),
      0 0 0 1px rgba(255, 140, 0, 0.3),
      inset 0 2px 0 rgba(255, 255, 255, 0.15),
      0 0 40px rgba(255, 0, 0, 0.3);
  }
  50% { 
    box-shadow: 
      0 12px 40px rgba(255, 0, 0, 0.6),
      0 0 0 2px rgba(255, 140, 0, 0.5),
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 0, 0, 0.5);
  }
}

/* Enhanced Section Styling */
section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 56px;
  background: 
    linear-gradient(135deg, 
      rgba(255,255,255,0.15) 0%, 
      rgba(255,255,255,0.10) 30%,
      rgba(255, 215, 0, 0.05) 50%,
      rgba(255,255,255,0.08) 70%,
      rgba(255,255,255,0.12) 100%),
    radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  border-radius: 32px;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 28px 80px rgba(0, 0, 0, 0.5),
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 0 40px rgba(255, 215, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

section h2 {
  background-size: 200% 200%;
  animation: titleGradient 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.3));
}

@keyframes titleGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Typography Scale */
@media (max-width: 480px) {
  h1 {
    font-size: 22px !important;
  }
  
  h2 {
    font-size: 20px !important;
  }
  
  h3 {
    font-size: 18px !important;
  }
  
  p, .section-desc {
    font-size: 14px !important;
  }
}

/* Responsive Spacing */
@media (max-width: 768px) {
  section {
    margin: 30px auto !important;
  }
  
  .match, .expert {
    padding: 20px !important;
  }
}

/* Responsive Grid Improvements */
@media (max-width: 640px) {
  .features-grid,
  .stats-grid,
  .predictions-grid,
  .premium-packages-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }
  
  header {
    padding: 20px 12px 30px;
  }
  
  section {
    padding: 20px 12px;
  }
  
  .button-container-fixed {
    padding: 6px 10px !important;
  }
  
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    padding: 12px 18px !important;
    font-size: 12px !important;
    min-height: 60px !important;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1920px and above) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0 40px;
  }
  
  section {
    max-width: 1400px;
    padding: 60px 80px;
  }
  
  header {
    max-width: 1200px;
    padding: 70px 50px 80px;
  }
  
  .logo {
    font-size: 72px;
  }
  
  .premium-packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container {
    max-width: 1400px;
  }
  
  section {
    max-width: 1200px;
    padding: 50px 60px;
  }
}

/* Tablet Landscape (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
  }
  
  header {
    padding: 50px 40px 60px;
  }
  
  .logo {
    font-size: 56px;
  }
  
  section {
    padding: 45px 50px;
  }
  
  .premium-packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 25px;
  }
  
  header {
    padding: 40px 30px 50px;
    border-radius: 30px;
  }
  
  .logo {
    font-size: 48px;
    letter-spacing: 2px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  section {
    padding: 40px 35px;
    margin: 40px auto;
  }
  
  section h2 {
    font-size: 32px;
  }
  
  .premium-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .predictions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-share-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countdown-container {
    gap: 15px;
  }
  
  .countdown-item {
    min-width: 90px;
    padding: 25px 20px;
  }
  
  .countdown-number {
    font-size: 40px;
  }
  
  .button-container-fixed {
    padding: 15px 20px !important;
  }
  
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    padding: 20px 40px !important;
    font-size: 17px !important;
  }
}

/* Mobile Large (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  
  header {
    padding: 35px 25px 45px;
    border-radius: 25px;
  }
  
  .round-logo {
    width: 140px;
    height: 140px;
  }
  
  .logo {
    font-size: 38px;
    letter-spacing: 1.5px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  section {
    padding: 35px 25px;
    margin: 35px auto;
    border-radius: 25px;
  }
  
  section h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .premium-packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .predictions-grid {
    grid-template-columns: 1fr;
  }
  
  .social-share-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countdown-container {
    gap: 12px;
  }
  
  .countdown-item {
    min-width: 75px;
    padding: 22px 18px;
  }
  
  .countdown-number {
    font-size: 32px;
  }
  
  .button-container-fixed {
    padding: 12px 18px !important;
  }
  
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    padding: 18px 35px !important;
    font-size: 16px !important;
    min-height: 75px !important;
  }
  
  .live-joining-container {
    padding: 20px;
    margin: 25px auto;
  }
  
  .trust-badges {
    gap: 15px;
    padding: 20px;
  }
}

/* Mobile Standard (360px - 480px) */
@media (min-width: 360px) and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  header {
    padding: 30px 20px 40px;
    border-radius: 20px;
  }
  
  .round-logo {
    width: 120px;
    height: 120px;
  }
  
  .logo {
    font-size: 32px;
    letter-spacing: 1px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  section {
    padding: 30px 20px;
    margin: 30px auto;
    border-radius: 20px;
  }
  
  section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .section-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .premium-packages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .premium-package-card {
    padding: 25px 18px;
  }
  
  .premium-package-title {
    font-size: 18px;
  }
  
  .premium-price {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .predictions-grid {
    grid-template-columns: 1fr;
  }
  
  .social-share-grid {
    grid-template-columns: 1fr;
  }
  
  .countdown-container {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 65px;
    padding: 18px 15px;
  }
  
  .countdown-number {
    font-size: 28px;
  }
  
  .countdown-label {
    font-size: 11px;
  }
  
  .button-container-fixed {
    padding: 10px 15px !important;
  }
  
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    padding: 16px 25px !important;
    font-size: 14px !important;
    min-height: 70px !important;
  }
  
  .button-container-fixed .btn-text {
    font-size: 15px !important;
  }
  
  .button-container-fixed .btn-subtext {
    font-size: 11px !important;
  }
  
  .live-joining-container {
    padding: 15px;
    margin: 20px auto;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }
  
  .badge {
    width: 100%;
    justify-content: center;
  }
  
  .urgency-banner-section {
    margin: 25px auto;
    padding: 0 15px;
  }
  
  .social-proof-section {
    margin: 25px auto;
    padding: 0 15px;
  }
}

/* Mobile Small (320px - 359px) */
@media (max-width: 359px) {
  .container {
    padding: 0 12px;
  }
  
  header {
    padding: 25px 15px 35px;
    border-radius: 18px;
  }
  
  .round-logo {
    width: 100px;
    height: 100px;
  }
  
  .logo {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
  
  .tagline {
    font-size: 14px;
  }
  
  .hero-subtitle {
    font-size: 12px;
  }
  
  section {
    padding: 25px 15px;
    margin: 25px auto;
    border-radius: 18px;
  }
  
  section h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  .section-desc {
    font-size: 13px;
    margin-bottom: 18px;
  }
  
  .premium-packages-grid {
    gap: 15px;
  }
  
  .premium-package-card {
    padding: 20px 15px;
  }
  
  .premium-package-title {
    font-size: 16px;
  }
  
  .premium-price {
    font-size: 32px;
  }
  
  .premium-currency {
    font-size: 26px;
  }
  
  .premium-feature-item {
    font-size: 13px;
  }
  
  .btn-premium-cta {
    padding: 14px 18px !important;
    font-size: 13px !important;
  }
  
  .features-grid {
    gap: 12px;
  }
  
  .feature-card {
    padding: 25px 18px;
  }
  
  .feature-icon {
    font-size: 36px;
  }
  
  .feature-title {
    font-size: 17px;
  }
  
  .feature-desc {
    font-size: 13px;
  }
  
  .stats-grid {
    gap: 12px;
  }
  
  .stat-card {
    padding: 25px 18px;
  }
  
  .stat-number {
    font-size: 34px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .countdown-container {
    gap: 8px;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 15px 12px;
  }
  
  .countdown-number {
    font-size: 24px;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .button-container-fixed {
    padding: 8px 12px !important;
  }
  
  .button-container-fixed .btn-telegram,
  .button-container-fixed .btn-mega {
    padding: 14px 20px !important;
    font-size: 13px !important;
    min-height: 65px !important;
  }
  
  .button-container-fixed .btn-text {
    font-size: 13px !important;
  }
  
  .button-container-fixed .btn-subtext {
    font-size: 10px !important;
  }
  
  .live-joining-container {
    padding: 12px;
    margin: 18px auto;
  }
  
  .trust-badges {
    padding: 12px;
    gap: 10px;
  }
  
  .badge {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .urgency-banner-section {
    margin: 20px auto;
    padding: 0 12px;
  }
  
  .social-proof-section {
    margin: 20px auto;
    padding: 0 12px;
  }
  
  .testimonial {
    padding: 18px;
  }
  
  .testimonial-text {
    font-size: 13px;
  }
  
  .faq-item {
    padding: 12px 14px;
  }
  
  .faq-question {
    font-size: 14px;
  }
  
  .faq-answer {
    font-size: 13px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: 30px 25px 40px;
  }
  
  .round-logo {
    width: 120px;
    height: 120px;
  }
  
  .logo {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
  
  section {
    padding: 30px 25px;
    margin: 30px auto;
  }
  
  .button-container-fixed {
    padding: 10px 15px !important;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-telegram,
  .btn-mega,
  .btn-premium-cta,
  .floating-btn {
    min-height: 48px;
    padding: 16px 28px;
  }
  
  .premium-package-card,
  .feature-card,
  .stat-card,
  .prediction-card {
    cursor: default;
  }
  
  .premium-package-card:hover,
  .feature-card:hover,
  .stat-card:hover {
    transform: none;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .round-logo,
  .premium-package-icon,
  .feature-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .button-container-fixed,
  .floating-button-container,
  .scroll-to-top,
  .button-container {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
  
  section {
    page-break-inside: avoid;
    background: #fff !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
  