body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
}

#app-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.trainer-container {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
}

#back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #444;
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
}

#back-btn:hover {
    background-color: #666;
}

#home-btn {
    margin-top: 20px;
    background-color: #444;
}

#home-btn:hover {
    background-color: #666;
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mode-section h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.map-btn {
    padding: 12px;
    font-size: 18px;
    background-color: #ff4655;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.map-btn:hover {
    background-color: #e03b48;
}

.image-box img {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gamesense-media img,
.gamesense-media video {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.input-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

input[type="text"],
textarea {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 70%;
    resize: vertical;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff4655;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e03b48;
}

#feedback {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

#score {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .trainer-container {
        padding: 20px;
    }

    .image-box img,
    .gamesense-media img,
    .gamesense-media video {
        height: 250px;
    }

    input[type="text"],
    textarea {
        width: 100%;
    }
}
