body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    color: #00ffcc;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
h1 {
    font-size: 3em;
    text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
    animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
    from { text-shadow: 0 0 20px #00ffcc; }
    to { text-shadow: 0 0 30px #00ffcc, 0 0 40px #00ffcc; }
}
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.menu-item {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid #00ffcc;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffcc;
}
.menu-item h2 {
    margin: 0 0 10px 0;
}
.nav {
    margin: 20px 0;
}
.nav button {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: box-shadow 0.3s;
}
.nav button:hover {
    box-shadow: 0 0 10px #00ffcc;
}
.search-bar {
    margin: 20px 0;
}
input[type="text"] {
    width: 60%;
    padding: 10px;
    font-size: 1.2em;
    border: 2px solid #00ffcc;
    background: rgba(0, 0, 0, 0.5);
    color: #00ffcc;
    border-radius: 5px;
    outline: none;
}
input[type="text"]:focus {
    box-shadow: 0 0 10px #00ffcc;
}
.pokemon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.pokemon-card {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid #00ffcc;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.pokemon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffcc;
}
.pokemon-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
}
.loading {
    font-size: 1.5em;
    margin-top: 50px;
}
footer {
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}