:root {
  --primary-color: #ff0387;
  --primary-gradient: linear-gradient(135deg, #ff00a5, #f65538);
  --background-color: #0a0a0a;
  --text-color: #ffffff;
  --secondary-text: #a0a0a0;
  --border-color: #303030;
  --card-bg: #1a1a1a;
  --hover-color: #2a2a2a;
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

header {
  margin-bottom: 40px;
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
  margin: 0 0 10px 0;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.last-published {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.date {
  color: var(--secondary-text);
  margin-left: 10px;
  font-weight: 500;
}

.versions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.version-card {
  flex: 1;
  min-width: 250px;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.version-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.version-card h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.version-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  background: var(--primary-gradient);
  color: white;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-item {
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.download-item:hover {
  background-color: var(--hover-color);
}

.download-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  text-decoration: none;
}

.download-item a:hover {
  text-decoration: underline;
}

.download-platform {
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
}

.platform-icon {
  display: none;
}

.notice {
  margin-top: 30px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ff3a3a;
  background-color: rgba(255, 58, 58, 0.1);
}

.notice a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.notice a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 60px;
  text-align: center;
  color: var(--secondary-text);
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

footer a {
  color: var(--secondary-text);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .versions {
    flex-direction: column;
  }

  .version-card {
    min-width: auto;
  }
}

.version-published {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 0.9em;
}

.version-published .date {
  color: var(--secondary-text);
  margin-left: 10px;
  font-weight: 500;
}
