/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark background for night theme */
    color: #e0e0e0; /* Light gray text for better readability */
}

/* Header styles */
header {
    background-color: #162447; /* Darker blue for header */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
}

.play-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #715AFF; /* Medium blue for button */
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.play-button:hover {
    background-color: #00a8e3; /* Bright blue on hover */
}

/* Main content styles */
main {
    padding: 20px;
}

.changelog {
    background-color: #0f3460; /* Dark blue for changelog section */
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); /* Slightly darker shadow for depth */
}

.changelog h2 {
    margin-top: 0;
    color: #00a8e3; /* Bright blue for the changelog title */
}

.version {
    margin-bottom: 20px; /* Space between versions */
}

.version strong {
    display: block; /* Makes the version bold text block-level */
    color: #00a8e3; /* Bright blue for version number */
    margin-bottom: 5px; /* Space between version title and updates */
}

.version p {
    margin: 5px 0; /* Space between each update line */
    color: #e0e0e0; /* Light gray for changelog items */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #162447; /* Darker blue for footer */
    color: white;
}

/* Responsive styles */
@media (max-width: 600px) {
    header {
        padding: 15px;
    }

    .play-button {
        padding: 8px 15px;
    }

    .changelog {
        padding: 15px;
    }
}