html, body {
    font-family: "Space Grotesk", sans-serif;
    background: #0a0a0f;
    color: #eee;
    overflow-x: hidden;
}

/* Padding fix for mobile */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Subtle animated falling grains */
.grain {
    position: fixed;
    top: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b377ff;
    opacity: 0.8;
    animation: fall linear infinite;
    z-index: 0;
}

@keyframes fall {
    from { transform: translateY(-10vh) translateX(0); }
    to   { transform: translateY(110vh) translateX(10px); }
}

.hero {
    background: linear-gradient(180deg, #1a0f2b, #0a0a0f);
    padding-top: 3rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 2;
}

/* Centered, responsive logo */
.token-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(179, 119, 255, 0.4);
}

.token-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* Lighter <strong> for readability */
strong {
    color: #d9b7ff;
}

a {
    color: #8d73ff;
}

a:hover {
    color: #c1f6ff;
}

.footer {
    background: #0d0d14;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Copy button styling */
.copy-btn {
    margin-top: 1rem;
    background: #b377ff;
    border: none;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: #c692ff;
}

.button.metamask-btn {
    background: linear-gradient(135deg, #f6851b, #ff9900);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: filter 0.2s ease;
}

.button.metamask-btn:hover {
    filter: brightness(1.1);
}

/* PancakeSwap Button */
.button.pancakeswap-btn {
    background: linear-gradient(135deg, #ff7bff, #ff5fa2);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: filter 0.2s ease;
}

.button.pancakeswap-btn:hover {
    filter: brightness(1.1);
}

.custom-light-blue {
    background-color: #478dff !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600;
}

.custom-light-blue:hover {
    background-color: #5c9afd !important;
    color: #fff !important;
}

.custom-light-purple {
    background-color: rgb(203, 71, 255) !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600;
}

.custom-light-purple:hover {
    background-color: #ca5cfd !important;
    color: #fff !important;
}