:root {
  --primary: #ff3e3e;
  --primary-light: #ff6b6b;
  --secondary: #ffc107;
  --dark: #121212;
  --darker: #0a0a0a;
  --text: #ffffff;
  --text-muted: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 62, 62, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 62, 62, 0.4);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--secondary);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Header */
header {
  background-color: var(--darker);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary);
}

.logo i {
  margin-right: 10px;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZGVmcz48cGF0dGVybiBpZD0icGF0dGVybiIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJNMCAwaDEwdjEwSDB6TTEwIDEwaDEwdjEwSDEweiIgZmlsbD0icmdiYSgyNTUsIDYyLCA2MiwgMC4xKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent, var(--dark));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  text-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 62, 62, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 62, 62, 0);
  }
}

/* Floating cards animation */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--secondary);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: float 15s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.hero-stat {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  margin: 0 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary);
  display: block;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Live Winner Tape */
.live-winners {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}

.live-winners-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 1;
}

.live-winners-label i {
  margin-right: 10px;
  animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

.winners-tape {
  display: flex;
  animation: slide 30s linear infinite;
  padding-left: 180px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tape-winner {
  display: flex;
  align-items: center;
  margin-right: 50px;
  white-space: nowrap;
}

.tape-winner-phone {
  font-weight: bold;
  margin-right: 10px;
}

.tape-winner-prize {
  color: var(--secondary);
}

/* Intro Section */
.intro {
  background-color: var(--darker);
  border-radius: 15px;
  margin-top: -50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 20;
  padding: 60px 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.intro-card {
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-card:hover {
  transform: translateY(-10px);
}

.intro-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.intro-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-light);
}

/* Cards Section */
.card-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.card-option {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.card-option::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.03),
      transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.card-option:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.card-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.win-chance {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 20px;
}

.win-chance.high {
  color: #4caf50;
}

.win-chance.medium {
  color: #ffc107;
}

.win-chance.low {
  color: #ff5722;
}

.win-chance.very-low {
  color: #f44336;
}

.card-btn {
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* Winners Board */
.winners-board {
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.board-title {
  font-size: 1.8rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.board-title i {
  margin-right: 15px;
}

.board-subtitle {
  color: var(--text-muted);
}

.winners-list {
  max-height: 400px;
  overflow-y: auto;
}

.winners-list::-webkit-scrollbar {
  width: 5px;
}

.winners-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.winners-list::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

.winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-info {
  display: flex;
  align-items: center;
}

.winner-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
}

.winner-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.winner-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.winner-prize {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  color: var(--secondary);
  font-weight: bold;
}

/* How It Works */
.how-it-works {
  background-color: var(--darker);
  border-radius: 15px;
  padding: 60px 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.step {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 62, 62, 0.4);
}

.step i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-light);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-links i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
  display: inline-block;
}

.modal h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text);
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal .btn {
  padding: 12px 30px;
}

.emphasis {
  color: var(--primary-light);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    background-color: var(--darker);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .live-winners-label {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .winners-tape {
    padding-left: 0;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-stat {
    margin: 0;
  }
}

@media (max-width: 576px) {
  .header-inner {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-value {
    font-size: 2rem;
  }

  .winners-board,
  .intro,
  .how-it-works {
    padding: 30px 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card {
    width: 60px !important;
    height: 80px !important;
    font-size: 1rem !important;
  }

  .modal {
    padding: 30px 20px;
  }
}