body {
    background: #1a1a2e; /* Dark blueish-purple */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
    padding: 20px;
    background: #252545; /* Darker purple-blue */
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 2em;
    font-weight: bold;
    color: #8a75ff; /* Soft purple */
}

.balance, .cost {
    font-size: 1.2em;
}

.highlight {
    color: #8a75ff;
    font-weight: bold;
}

.btn {
    background: #8a75ff;
    color: black;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn-image {
    width: 100px; 
    height: auto;
    margin-bottom: 10px;
}

.btn-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: -10px;
}

.btn-balance {
    font-size: 18px;
    font-weight: bold;
}


.btn:hover {
    transform: scale(1.05);
    background: #7a65e0;
}

.link {
    display: inline-block;
    margin-top: 20px;
    color: #8a75ff;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.2s;
}

.link:hover {
    color: #a28aff;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: #343465; /* Slightly lighter dark blue */
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sell-btn {
    background: #ff5c5c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.2s;
}

.sell-btn:hover {
    background: #e04a4a;
}
