/* General styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5; /* Soft background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

/* Profile Section */
.profile-section {
    margin-bottom: 30px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.profile-picture:hover {
    transform: scale(1.1);
}

.profile-name {
    margin-top: 15px;
    font-size: 2em;
    color: #2c5f2d; /* Forest green */
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    background-color: #ffffff;
    color: #2c5f2d;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.link-button:hover {
    background-color: #dfe6e9; /* Soft hover */
    transform: translateY(-3px);
}

/* Minigame Section */
.minigame-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #d1f2eb;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.minigame-section:hover {
    background-color: #a3e4d7; /* Hover color change */
}

.minigame-started {
    background-color: #e6b0aa !important; /* Color change after start */
}
