body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #121212;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.1);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.currency-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap to the next line */
    justify-content: center; /* Center buttons horizontally */
    gap: 15px; /* Space between buttons */
    margin: 20px 0;
    width: 100%;
    max-width: 180px; /* Adjust this value to fit 3 buttons per row */
}

.currency-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #1e90ff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.currency-button img {
    width: 24px;
    height: 24px;
}

.currency-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1e90ff, #00aaff);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #1e90ff);
    padding: 15px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.link i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.link img {
    width: 24px;
    height: 24px;
}

.link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1e90ff, #00aaff);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

.footer a {
    color: #1e90ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
