body {
    font-family: 'Montserrat', sans-serif;
    /* Choose a modern font */
    margin: 0;
    padding: 0;
    background-color: #1e0d18;
    /* Light background */
}

header {
    text-align: center;
    padding: 20px;
    background-color: #a34987;
    color: #fff;
    display: flex;
    /* Center content horizontally */
    justify-content: center;
}

h1 {
    font-size: 36px;
    margin: 0;
}

p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

main {
    max-width: 800px;
    margin: 20px auto;
}

.premium {
    position: relative;
    margin-top: 20px;
    margin-left: 20px;
    float: left;
    color: #fff;
    text-align: center;
    align-items: center;
    background-color: #da94e0;
    border-radius: 10px;
    padding-bottom: 40px;
}

.premium a {
    position: absolute;
    bottom: 0;
    left: 20%;
    color: #fff;
    margin-top: 20px;
    text-decoration: none;
    background-color: #a34987;
    border-radius: 10px;
    padding: 20px;
    opacity: 90%;
}

.features {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.features p {
    text-align: center;
    font-weight: lighter;
}

.features hr {
    opacity: 90%;
    border-color: #a34987;
}

.features span {
    display: block;
    margin-bottom: 10px;
    font-weight: bolder;
}

.commands {
    background-color: #302631;
    padding: 20px;
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.commands ul {
    list-style: none;
    padding: 0;
}

.commands li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.commands img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    /* Rounded corners for images */
    margin-right: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a34987;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.support {
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #a34987;
    color: #fff;
}

footer .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #da94e0;
    color: #3c243f;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}