:root {
  --primary-color: #6e6bf3;
  --secondary-color: #f3c032;
  --dark-bg: #1a1b2f;
  --card-bg: #252640;
  --text-light: #ffffff;
  --text-muted: #cbcae6;
  --accent-color: #5d5ad8;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #e91e63;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--dark-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  padding: 20px 0;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s;
}

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

.cta-button {
  background-color: var(--secondary-color);
  color: var(--dark-bg) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  align-items: center;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.primary-button,
.secondary-button {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.primary-button {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Section Styles */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(110, 107, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* How It Works Section */
.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step-content p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Event Types Section */
.event-types-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.event-type {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-type-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(110, 107, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.event-type-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.event-type h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.event-type p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Categories Section */
.categories-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.category {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  width: 180px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(110, 107, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.category:hover .category-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.category-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.category:hover .category-icon i {
  color: var(--text-light);
}

.category h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

/* Download Section */
.download {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.download-content {
  flex: 1;
  padding: 60px;
}

.download h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.download p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.app-button {
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  border-radius: 12px;
  padding: 15px 25px;
  transition: all 0.3s;
}

.app-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #252640;
}

.app-button i {
  font-size: 30px;
  margin-right: 15px;
}

.app-button div {
  display: flex;
  flex-direction: column;
}

.app-button span {
  font-size: 12px;
  opacity: 0.8;
}

.app-button strong {
  font-size: 18px;
  font-weight: 600;
}

.download-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.download-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Privacy Section */
.privacy {
  background-color: transparent;
}

.privacy-content {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.privacy-section p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.privacy-section ul li {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo .logo {
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(110, 107, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-links a i {
  font-size: 18px;
  color: var(--text-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

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

  .download {
    flex-direction: column;
  }

  .download-content {
    padding: 40px;
    text-align: center;
  }

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

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

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

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

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 15px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .download-content {
    padding: 30px 20px;
  }

  .app-buttons {
    flex-direction: column;
  }
}
