/* Base Page Styling */
body {
    background-color: #f4f4f9;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 30px 20px;
    line-height: 1.6;
    text-align: center;
}

/* Header Section Styling */
.header-section {
    margin-bottom: 40px;
}

/* Back Button */
.back-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #222222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 15px 0;
}

/* Game Button */
.game-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ceadff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
}

/* Style Header */
h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
}

/* Gallery Section Styling (Positions the list nicely in the middle) */
.gallery-section {
    max-width: 700px;
    margin: 0 auto; 
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    font-size: 21px;
}

ul, ol {
  list-style-position: inside;
}

/* Removes bullet points from the inner list with the images */
ul {
    list-style-type: none; 
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Video Section Styling */
.video-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

/* Style image at top (corvette) */
.corvette-image {
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}