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

:root {
  --primary-red: #e31e24;
  --primary-red-dark: #c41a1f;
  --primary-blue: #4facfe;
  --primary-cyan: #00d4ff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --bg-gray: #f8f8f8;
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #999999;
  --border-color: #e8e8e8;
  --header-height: 56px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --orange: #ff9800;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 50px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #e31e24 0%, #f44336 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(227, 30, 36, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  color: white;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.join-btn {
  background: white;
  color: var(--primary-red);
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.join-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-login {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-register {
  background: white;
  color: var(--primary-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Slider Styles */
.hero-slider {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #f0f0f0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  width: 20px;
  border-radius: 3px;
}

/* Notification Banner */
.notification-banner {
  background: linear-gradient(90deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #ffcc80;
  height: 40px;
  box-sizing: border-box;
}

.notification-icon {
  font-size: 16px;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

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

.notification-text {
  flex: 1;
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Game Categories Section */
.game-categories {
  padding: 20px 0;
  background: var(--bg-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:active {
  transform: scale(0.95);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-name {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  text-align: center;
}

/* Lottery Section */
.lottery-section {
  border-radius: 16px;
  padding: 20px;
  margin: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.win-go-section {
  background: linear-gradient(135deg, #4facfe 0%, #00d4ff 100%);
  background-image: url('https://82lottery7.com/assets/png/XOSO_bg-57f7c4c7.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(79, 172, 254, 0.3);
}

.k3-section {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  background-image: url('https://82lottery7.com/assets/png/4D_bg-721dba75.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(255, 154, 158, 0.3);
}

.five-d-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  background-image: url('https://82lottery7.com/assets/png/5D_bg-23f2c875.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(168, 237, 234, 0.3);
}

.motorace-section {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  background-image: url('https://82lottery7.com/assets/png/MotoRace_bg-6e64cdd9.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(255, 236, 210, 0.3);
}

.lottery-bg-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  z-index: 0;
  opacity: 0.8;
}

.lottery-balls {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments for lottery decorations */
@media (max-width: 768px) {
  .lottery-bg-decoration {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }

  .lottery-section {
    min-height: 100px;
    margin: 12px 8px;
    padding: 16px;
  }
}

.lottery-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.lottery-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lottery-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}


/* Member Info Section */
.member-info {
  background: var(--bg-white);
  padding: 16px;
  margin: 0 16px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-red);
}

.member-details {
  flex: 1;
}

.member-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.member-status {
  font-size: 12px;
  color: var(--text-gray);
}

.member-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-red);
}

/* Add to Desktop Banner */
.desktop-banner {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 70px;
    opacity: 1;
  }
}

.desktop-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.desktop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5);
}

/* Mobile responsive styles for desktop-btn */
@media (max-width: 768px) {
  .desktop-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
}

@media (max-width: 375px) {
  .desktop-btn {
    font-size: 11px;
    padding: 5px 12px;
  }
}

.desktop-btn::before {
  content: '';
  background-image: url('https://ossimg.82lottery-82lottery.com/india82/other/h5setting_20231224025005mrp4.ico');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Floating Action Button */
.floating-chat {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(227, 30, 36, 0.35);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

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

.floating-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
}

.floating-chat::before {
  content: '💬';
  font-size: 24px;
}

/* SEO Content Section */
.seo-content {
  padding: 30px 20px;
  background: var(--bg-white);
  margin: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.seo-content h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-red);
  font-weight: 700;
}

.seo-content h3 {
  font-size: 16px;
  margin: 20px 0 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.seo-content p {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 14px;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 5px 0 5px;
  height: 61px;
  clip-path: polygon(0% 0%, 35% 0%, 45% 0%, 50% 15%, 55% 0%, 65% 0%, 100% 0%, 100% 100%, 0% 100%);
}


.bottom-nav-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #999999;
  flex: 1;
  border-radius: 8px;
  justify-content: center;
  height: 100%;
}

.nav-item.active {
  color: #e31e24;
}

.nav-item.active .nav-icon {
  color: #e31e24;
  fill: #e31e24;
}

.nav-icon {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
  display: block;
}

.nav-icon svg,
.svg-icon {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  color: currentColor;
}

.nav-label {
  font-size: 9px;
  font-weight: 400;
  color: currentColor;
  line-height: 1;
  margin-top: 1px;
}

.nav-item-center {
  position: relative;
  margin-top: -32px;
  margin-bottom: -12px;
  z-index: 3;
}

.nav-item-center .nav-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  border: 4px solid white;
  transition: all 0.3s ease;
}

.nav-item-center .nav-icon-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.nav-item-center .nav-icon {
  display: none;
}

.nav-item-center .nav-icon-wrapper::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid white;
  margin-top: 4px;
}

.nav-item-center .nav-label {
  color: #666666;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 500;
}

/* SEO Content Styling */
.seo-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.seo-content h1 {
  color: var(--primary-red);
  font-size: 2.2em;
  margin-bottom: 20px;
  text-align: center;
}

.seo-content h2 {
  color: var(--primary-red);
  font-size: 1.8em;
  margin: 30px 0 15px 0;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
}

.seo-content h3 {
  color: var(--text-dark);
  font-size: 1.4em;
  margin: 25px 0 10px 0;
}

.seo-content ul, .seo-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.seo-content li {
  margin: 8px 0;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seo-content .table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: 8px;
}

.seo-content .table-container table {
  min-width: 600px;
  margin: 0;
}

.seo-content th, .seo-content td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.seo-content th {
  background: var(--primary-red);
  color: white;
  font-weight: 600;
}

.seo-content tr:nth-child(even) {
  background: #f9f9f9;
}

.seo-content strong {
  color: var(--primary-red);
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
  margin: 16px 16px 0;
  border-radius: 16px;
}

.footer p {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-keywords {
  font-size: 11px;
  color: var(--text-light);
}

/* Responsive Design */
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 32px;
  }
  
  .category-icon {
    width: 80px;
    height: 80px;
  }
  
  .category-name {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .logo-img {
    height: 36px;
  }
  
  .nav-buttons {
    gap: 8px;
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .categories-grid {
    gap: 12px;
    padding: 0 12px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .category-name {
    font-size: 12px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, #f0f0f0 4%, #e8e8e8 25%, #f0f0f0 36%);
  background-size: 1000px 100%;
}

/* New Modern Landing Page Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #e31e24 0%, #f44336 100%);
  color: white;
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.hero-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: white;
  color: #e31e24;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
}

.features-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e31e24, #f44336);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 30, 36, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
  border-color: rgba(227, 30, 36, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

/* Payment Section */
.payment-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

.payment-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
}

.payment-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e31e24, #f44336);
  border-radius: 2px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.payment-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 30, 36, 0.1);
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
  border-color: rgba(227, 30, 36, 0.3);
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.payment-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.payment-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* App Features Section */
.app-features-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.app-features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
}

.app-features-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e31e24, #f44336);
  border-radius: 2px;
}

.features-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(227, 30, 36, 0.1);
}

.feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-number {
  background: linear-gradient(135deg, #e31e24, #f44336);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

/* Updated Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Join Button */
.join-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.join-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Top Warning Banner Mobile */
  .top-warning-banner {
    padding: 10px 0;
  }

  .warning-content {
    padding: 0 15px;
    gap: 10px;
  }

  .warning-text {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .warning-icon {
    font-size: 1.3rem;
    order: -1;
  }

  .warning-close {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    position: absolute;
    top: 5px;
    right: 10px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-number {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }

  .features-section h2,
  .payment-section h2,
  .app-features-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  /* Top Warning Banner Small Mobile */
  .top-warning-banner {
    padding: 8px 0;
  }

  .warning-content {
    padding: 0 10px;
  }

  .warning-text {
    font-size: 0.8rem;
    gap: 8px;
  }

  .warning-icon {
    font-size: 1.2rem;
  }

  .warning-close {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
    top: 3px;
    right: 8px;
  }

  .hero-section {
    padding: 40px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
}

/* Top Warning Banner */
.top-warning-banner {
  background: linear-gradient(135deg, #e31e24 0%, #f44336 100%);
  color: white;
  padding: 12px 0;
  position: relative;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(227, 30, 36, 0.3);
  animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(227, 30, 36, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.5);
  }
}

.warning-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: warningBounce 1s infinite;
}

@keyframes warningBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.warning-text {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.warning-text strong {
  color: #ffeb3b;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.warning-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.warning-close:active {
  transform: scale(0.95);
}

/* Hidden state for warning banner */
.top-warning-banner.hidden {
  display: none;
}

/* Legal and Terms Sections */
.legal-section {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 3px solid #e31e24;
}

.legal-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #e31e24;
  margin-bottom: 30px;
}

.disclaimer-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 5px solid #e31e24;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #495057;
  font-size: 1rem;
}

.disclaimer-box strong {
  color: #e31e24;
}

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #ffc107;
}

.warning-box h4 {
  color: #856404;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.warning-box p {
  color: #856404;
  margin: 0;
  font-weight: 500;
}

.terms-section {
  padding: 60px 0;
  background: white;
}

.terms-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

.terms-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e31e24, #f44336);
  border-radius: 2px;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.terms-content h3 {
  color: #e31e24;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 25px 0 10px 0;
  border-bottom: 2px solid rgba(227, 30, 36, 0.2);
  padding-bottom: 5px;
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.legal-notice {
  text-align: center;
}

.legal-notice .disclaimer-box {
  text-align: left;
}

/* Responsive Legal Sections */
@media (max-width: 768px) {
  .legal-section,
  .terms-section {
    padding: 40px 0;
  }

  .legal-section h2,
  .terms-section h2 {
    font-size: 1.8rem;
  }

  .disclaimer-box,
  .terms-content {
    padding: 25px;
    margin: 0 15px;
  }

  .terms-content h3 {
    font-size: 1.2rem;
  }

  .warning-box {
    padding: 15px;
    margin: 15px;
  }
}
