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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2d3748;
  color: #f7fafc;
  line-height: 1.6;
}

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

/* Header */
.header {
  background-color: #1a365d;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: #ecc94b;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #f7fafc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ecc94b;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ecc94b;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #cbd5e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

/* Platform Cards */
.platforms {
  padding: 4rem 0;
}

.platforms .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.platform-card {
  background-color: #4a5568;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.platform-card.featured {
  border: 3px solid #ecc94b;
  background-color: #553c9a;
}

.platform-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #ecc94b;
  color: #1a365d;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.platform-logo {
  margin-bottom: 1.5rem;
}

.brand-name {
  background: linear-gradient(135deg, #ecc94b 0%, #f6e05e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  border: 2px solid #ecc94b;
  border-radius: 10px;
  margin: 0;
}

.logo-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed #cbd5e0;
  padding: 2rem;
  border-radius: 10px;
  color: #cbd5e0;
  font-weight: bold;
}

.platform-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ecc94b;
}

.platform-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.rating {
  margin-bottom: 1.5rem;
}

.stars {
  font-size: 1.5rem;
  color: #ecc94b;
  margin-bottom: 0.5rem;
}

.rating-text {
  color: #cbd5e0;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background-color: #38a169;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background-color: #2f855a;
  transform: scale(1.05);
}

.disclaimer {
  font-size: 0.8rem;
  color: #a0aec0;
  font-style: italic;
}

/* Content Section */
.content {
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.content-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.content-text p {
  font-size: 1.1rem;
  color: #e2e8f0;
}

/* Regulation Section */
.regulation {
  padding: 3rem 0;
  text-align: center;
}

.regulation h2 {
  margin-bottom: 2rem;
  color: #ecc94b;
}

.regulation-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.regulation-link {
  background-color: #4a5568;
  color: #f7fafc;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  min-width: 150px;
  transition: all 0.3s ease;
  border: 2px solid #cbd5e0;
}

.regulation-link:hover {
  background-color: #2d3748;
  color: #ecc94b;
  transform: translateY(-2px);
}

.responsibility-badge {
  background-color: #e53e3e;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  min-width: 150px;
}

/* Legal Disclaimer */
.legal-disclaimer {
  padding: 3rem 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.legal-disclaimer p {
  margin-bottom: 1rem;
  color: #a0aec0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #1a365d;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-name {
  color: #ecc94b;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-regulation-link {
  background-color: #4a5568;
  color: #cbd5e0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-regulation-link:hover {
  background-color: #2d3748;
  color: #ecc94b;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .platforms .container {
    grid-template-columns: 1fr;
  }

  .platform-card {
    margin: 0 10px;
  }

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

  .regulation-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .platform-card {
    padding: 1.5rem;
    margin: 0 5px;
  }

  .hero {
    padding: 2rem 0;
  }

  .platforms {
    padding: 2rem 0;
  }
}
