body {
    margin: 0;
    background-color: #000026;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

header {
    background-color: #000016;
    border-bottom: 2px solid #00CCCC;
    padding: 5px 32px;
    display: flex;
    align-items: left;
    height:10vh;
}

.game {
    display: block;
    background: #020233;
    border: 2px solid #00CCCC;
    border-radius: 6px;
    padding: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game:hover {
    transform: scale(1.03);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
    cursor: pointer;
}

.gameCover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #00CCCC;
    margin-bottom: 12px;
}

.gameName {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00CCCC;
    text-align: center;
}

.gameAvgRating {
    font-size: 1.2rem;
    color: #8dff2d;
    font-weight: bold;
    text-align: center;
}

img#logo {
    max-height: 90%;
    height: auto;
    width: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 16px 0;
    border-top: 2px solid #00CCCC;
    background-color: #000016;
}

footer a {
    color: #00CCCC;
    text-decoration: none;
    font-weight: bold;
}

.dark-hero {
    text-align: center;
    padding: 48px 0 36px;
    margin-bottom: 36px;
}

.dark-title {
    color: #00e5ff;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.dark-subtitle {
    color: #aaa;
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.home-search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.home-search-type {
    padding: 12px 14px;
    background: transparent;
    color: white;
    border: 2px solid #00e5ff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px 0 0 4px;
}

.home-search-type:hover {
    background: #00e5ff;
    color: #020233;
}

.home-search-type:focus-visible {
    outline: none;
}

.home-search-type:focus {
    outline: none;
    box-shadow: none;
}

.home-search-type option {
    background: #020233;
    color: white;
}

.home-search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #00e5ff;
    border-left: none;
    border-right: none;
    background: #020233;
    color: white;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
}

.home-search-bar input::placeholder {
    color: #555;
}

.home-search-bar button {
    padding: 12px 20px;
    background: #00e5ff;
    color: #020233;
    border: 2px solid #00e5ff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.home-search-bar button:hover {
    background: white;
    border-color: white;
}

.home-section-label {
    color: #aaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.home-wireframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.home-wireframe-card {
    border: 2px solid #00e5ff;
    background: #020233;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.home-wireframe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
    cursor: pointer;
}

.home-wireframe-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.home-card-info {
    padding: 14px 16px;
}

.home-wireframe-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.home-wireframe-rating {
    color: #8dff2d;
    font-size: 0.95rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    width: 100%;
}

.home-wireframe-stars {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 600px) {
    .dark-title {
        font-size: 2rem;
    }

    .home-wireframe-grid {
        grid-template-columns: 1fr;
    }
}