body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.download-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 350px;
    width: 90%;
}

.icon { font-size: 3rem; margin-bottom: 1rem; }

h2 { margin: 0; color: #333; }

.version-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    margin: 1rem 0;
}

.description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.download-btn {
    display: block;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background-color: #1d4ed8;
}

.footer-info {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
}

.release-notes {
    text-align: left; /* Better for reading lists */
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #edf2f7;
}

.release-notes h3 {
    margin-top: 0;
    font-size: 0.9rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-notes ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #4a5568;
    font-size: 0.85rem;
}

.release-notes li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Subtle change to the icon for variety */
.icon { 
    font-size: 3rem; 
    margin-bottom: 0.5rem; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}