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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #BCBCFB;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 24px;
  padding: 80px 60px 120px 60px;
  width: 980px;
  height: 786px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fadeIn 0.6s ease-out;
}

.logo {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-button {
  background: #A6F6D5;
  border: none;
  border-radius: 5px;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 60px;
  box-shadow: 0 4px 0 #F7D9FF;
}

.cta-button:hover {
  background: #45a049;
  color: white;
  transform: scale(1.05);
}

.trending-section {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin-bottom: 0;
}

.trending-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}

.trending-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-item {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  height: auto;
  width: auto;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.footer {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #666;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  margin-left: 8px;
  color: #ddd;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 60px 40px 100px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px 80px 20px;
    width: 95%;
    height: auto;
    min-height: 600px;
  }
  
  .logo {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .tagline {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 8px 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  .trending-section {
    bottom: 120px;
  }
  
  .trending-logos {
    gap: 15px;
  }
  
  .logo-item img {
    max-width: 50px;
    max-height: 50px;
  }
  
  .footer {
    bottom: 40px;
  }
  
  .footer-links {
    gap: 6px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px 60px 15px;
    width: 98%;
    min-height: 500px;
  }
  
  .logo {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .tagline {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .description {
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .cta-button {
    padding: 6px 20px;
    font-size: 13px;
    margin-bottom: 30px;
  }
  
  .trending-section {
    bottom: 100px;
  }
  
  .trending-logos {
    gap: 10px;
  }
  
  .logo-item img {
    max-width: 40px;
    max-height: 40px;
  }
  
  .footer {
    bottom: 30px;
  }
  
  .footer-links {
    gap: 4px;
    font-size: 11px;
  }
  
  .footer-links a:not(:last-child)::after {
    margin-left: 4px;
  }
}
