/* Platform and content pages styles */

.platform-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.platform-hero {
  position: relative;
  overflow: hidden;
}

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

/* Buttons */
.button-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #6366F1;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  background: #4F46E5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.button-primary.large {
  padding: 16px 32px;
  font-size: 18px;
}

.button-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #6366F1;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 2px solid #6366F1;
  cursor: pointer;
}

.button-secondary:hover {
  background: #6366F1;
  color: white;
  transform: translateY(-1px);
}

.button-secondary.small {
  padding: 12px 24px;
  font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .platform-hero h1 {
    font-size: 36px !important;
  }

  .platform-hero p {
    font-size: 18px !important;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .platform-hero h1 {
    font-size: 28px !important;
  }

  .platform-hero p {
    font-size: 16px !important;
  }

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