/* Reset */
body {
    margin: 0;
    padding: 0;
    background: black;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}

.buy-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid #ff00ff;
    border-radius: 8px;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    background: rgba(255,0,255,0.1);
    transition: 0.3s;
}
.buy-btn:hover {
    background: rgba(255,0,255,0.3);
}


/* Center container */
.container {
    position: relative;
    top: 120px;
    z-index: 5;
}

/* NEO pill logo */
.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px #ff00ff);
}

a {
    color: #ff00ff !important;
    text-decoration: none;
    text-shadow: 0 0 8px #ff00ff;
}

a:hover {
    color: #ff00ff !important;
    text-shadow: 0 0 12px #ff55ff;
}

/* Title */
h1 {
    font-size: 60px;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
}

/* Tagline */
.tagline {
    font-size: 22px;
    margin-top: -15px;
}

/* Mint address */
.address {
    font-size: 16px;
    margin-top: -5px;
    color: #ddd;
}

/* Supply text */
.supply {
    margin-top: 20px;
    font-size: 18px;
}

/* On-chain link */
.burn-link {
    color: #ff00ff;
    text-decoration: none;
}

/* MATRIX canvas */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* WHITE RABBIT – top-right corner */
.white-rabbit-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.white-rabbit-link img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 12px #ff00ff);
    cursor: pointer;
    animation: rabbitPulse 2s infinite ease-in-out;
}

/* Pulse animation */
@keyframes rabbitPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* MOBILE FIXES */
@media screen and (max-width: 600px) {
    .logo { width: 140px; }
    h1 { font-size: 45px; }
    .tagline { font-size: 18px; }
    .address { font-size: 12px; }
    .white-rabbit-link img { width: 55px; }
}
