@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a0d2b, #0d1e3d);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.9);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px #ff00ff;
    z-index: 1000;
}

.logo {
    color: #00ffff;
    font-size: 1.8em;
    text-shadow: 0 0 10px #00ffff;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #ff69b4;
    text-decoration: none;
    font-size: 1.1em;
    text-shadow: 0 0 5px #ff69b4;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.container {
    background: rgba(10, 10, 20, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7), 0 0 40px rgba(0, 255, 255, 0.5);
    width: 450px;
    text-align: center;
    border: 2px solid #ff00ff;
    animation: flicker 3s infinite alternate;
    margin: 100px auto 20px; /* Space for navbar */
}

.hidden {
    display: none;
}

h1 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

#wallet-info p, .container p {
    margin: 8px 0;
    color: #ff69b4;
    text-shadow: 0 0 5px #ff69b4;
    font-size: 1.1em;
}

.container ul {
    list-style: none;
    padding: 0;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.container ul li {
    margin: 10px 0;
}

.actions {
    margin-top: 25px;
}

h2 {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-size: 1.5em;
    margin: 15px 0;
}

.buy-section {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    padding: 8px;
    margin-right: 15px;
    border: 2px solid #00ffff;
    border-radius: 8px;
    background: rgba(0, 255, 255, 0.1);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    outline: none;
    box-shadow: 0 0 10px #00ffff;
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
    border-color: #ff00ff;
}

button {
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff;
}

#status {
    margin-top: 20px;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    font-size: 1em;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}