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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2.8em;
    color: #1a3a52;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1em;
    color: #667a8a;
    margin-bottom: 12px;
}

.version {
    font-size: 1em;
    color: #2172e6;
    margin-bottom: 28px;
    font-weight: 600;
}

.download-section {
    margin-bottom: 32px;
}

.download-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #2172e6;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #1a5ac0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 114, 230, 0.3);
}

.note {
    font-size: 0.95em;
    color: #667a8a;
    margin-top: 12px;
}

.note a {
    color: #2172e6;
    text-decoration: none;
    font-weight: 600;
}

.changelog-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e0e8f0;
}

.changelog-section h2 {
    font-size: 1.5em;
    color: #1a3a52;
    margin-bottom: 20px;
}

.changelog-list {
    text-align: left;
}

.changelog-item {
    padding: 14px;
    background: #f5f8fb;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #2172e6;
}

.changelog-item:last-child {
    margin-bottom: 0;
}

.version-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #2172e6;
    color: white;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 6px;
}

.changelog-item p {
    font-size: 0.95em;
    color: #667a8a;
    margin: 4px 0;
}

.status {
    font-size: 0.85em;
    color: #27ae60;
    font-weight: 600;
}

.back-link {
    margin-top: 28px;
}

.back-link a {
    color: #2172e6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.back-link a:hover {
    color: #1a5ac0;
}

.card-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid #e0e8f0;
    font-size: 0.85em;
    color: #999;
}