/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #222;
    color: white;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Enables scrolling */
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 27px;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 65px;
    margin-right: 10px;
    border-radius: 30px;
}

/* Search Bar */
input[type="text"] {
    width: 35%;
    padding: 8px;
    border-radius: 45px;
    border: none;
    height: 35px;
    font-size: 16px;
    margin-right: -50px; /* Brings search bar closer to icons */
}

input[type="text"]::placeholder {
    font-size: 125%;
}

/* Header Icons */
.icons {
    display: flex;
    gap: 20px; /* Reduced gap to bring icons 25% closer */
    margin-right: 100px;
}

.icons a img {
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.icons a:hover img {
    transform: scale(1.2);
}

/* Container */
.container {
    max-width: 800px;
    margin: auto;
    padding: 100px 20px 20px; /* Adjusted padding to avoid header overlap */
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Title */
h1 {
    color: #ff9800;
}

/* Video */
.video {
    margin: 20px 0;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* Description */
.description {
    margin-top: 20px;
    text-align: left;
}

.description p {
    line-height: 1.6;
}

.release-date {
    font-weight: bold;
    color: #03a9f4;
}

/* Download Buttons */
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.buttons a {
    text-decoration: none;
    color: white;
    background-color: #ff5722;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.buttons a:hover {
    background-color: #e64a19;
}

/* Game Button Styling */
.button {
    display: flex;
    width: 150px;
    height: 225px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.button.locked img {
    filter: grayscale(100%);
    opacity: 35%;
}

.button:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.button:active {
    transform: scale(0.95);
}
