:root {
  --primary-color: #f80c0c;
  --secondary-color: #2ec4b6;
  --dark-color: #011627;
  --light-color: #fdfffc;
  --accent-color: #20a4f3;
  --success-color: #2ecc71;
  --warning-color: #f1c40f;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: var(--dark-color);
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 20px 0;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

/* Launch Badge */
.launch-badge {
  background-color: var(--success-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: bounce 1s ease infinite;
}

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

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  flex: 1;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

/* Features */
.features {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  margin: 10px 20px 10px 0;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
}

.feature span {
  font-weight: 500;
}

/* Download Section */
.download-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.download-section h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.download-section p {
  margin-bottom: 20px;
  color: #666;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.download-btn,
.github-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.secondary-btn {
  background-color: var(--dark-color);
  color: white;
}

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

.version-info {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-top: 20px;
}

.version-info i {
  margin-right: 5px;
  color: var(--accent-color);
}

/* Hero Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background-color: var(--dark-color);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.app-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scan-animation {
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, white, transparent);
  position: absolute;
  top: 50%;
  animation: scan 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}

.food-item {
  width: 150px;
  height: 150px;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
  50% {
    transform: translateY(100px);
    opacity: 1;
  }
}

/* Footer */
footer {
  padding: 30px 0;
  text-align: center;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--primary-color);
}

footer p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .feature {
    margin: 10px 15px;
  }

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

  .version-info {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }

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

  .download-btn,
  .github-btn {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}
