/* Container */
#download-container {
    margin: 20px auto;
    max-width: 48em;
}

/* Carte */
.download-card {
    background: linear-gradient(-25deg, rgba(245,166,35,0.15), rgba(255,255,204,0.1));
    border: 1px solid rgba(245,166,35,0.35);
    padding: 18px 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Header */
.download-header {
    border-bottom: 1px groove rgba(245,166,35,0.4);
    margin-bottom: 12px;
}

.download-title {
    font-family: 'bignoodle', Arial, sans-serif;
    font-size: 1.4rem;
    color: #f8ba57;
    text-shadow: 0 0 8px rgba(230,111,32,0.4);
    margin: 0;
}

/* Body layout */
.download-body {
    display: flex;
    gap: 20px;
}

.download-left {
    flex: 0 0 160px;
}

.download-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* Right side */
.download-right {
    flex: 1;
}

/* Text */
.download-text {
    color: #ffffcc;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

/* Button */
.download-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #f5a623;
    color: #3f1b0d;
    border: 1px solid rgba(63,27,13,0.4);
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s ease, transform .2s ease;
}

.download-btn:hover {
    background: #f8ba57;
    transform: translateY(-2px);
}

/* Changes list */
.changes-title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #f8ba57;
    font-family: 'bignoodle', Arial, sans-serif;
    text-shadow: 0 0 8px rgba(230,111,32,0.4);
}

.changes-list {
    margin: 0;
    padding-left: 20px;
    color: #ffffcc;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    text-align: left;
}

.changes-list li {
    margin-bottom: 4px;
    list-style: square;
}
