body {
    background-color: #1F2A44;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1F2A44;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

#logo {
    height: 50px;
    cursor: pointer;
}

.search-bar {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
    position: relative;
}

#searchInput {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px 0 0 5px;
}

button {
    padding: 10px 20px;
    background-color: #E63946;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 70%;
    background-color: #2A3B5A;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #E63946;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    text-decoration: underline;
}

#topMoviesSection, #topShowsSection {
    display: block;
}

.genre-selection {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.genre-selection select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #2A3B5A;
    color: white;
    border: none;
    cursor: pointer;
}

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.grid-item p {
    margin: 5px 0;
}

.info {
    display: flex;
    margin-top: 20px;
}

.info img {
    width: 200px;
    border-radius: 5px;
    margin-right: 20px;
}

.info-text {
    flex: 1;
}

select {
    padding: 5px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 5px;
    background-color: #2A3B5A;
    color: white;
    border: none;
}

.info-text select#sourceSelect {
    margin-left: 10px;
}

#player {
    width: 100%;
    height: 500px;
    margin-top: 20px;
    display: none;
}

footer {
    background-color: #1F2A44;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

.footer-content p {
    margin: 5px 0;
}

.wallet {
    font-family: monospace;
    color: #E63946;
    word-break: break-all;
}