
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    text-align: center;
    background-color: #000;
}

.fire-bg {
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    padding: 80px 20px;
}

.content {
    z-index: 2;
    position: relative;
    padding: 40px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 16px;
    display: inline-block;
    margin: auto;
}

.token-img-large {
    width: 250px;
    animation: pulse 2s infinite;
}

h1 {
    font-size: 3.5rem;
    margin: 20px 0;
}

p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    background-color: #ff6600;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff6600;
}

.section {
    padding: 60px 20px;
    background-color: #111;
}

.section.dark {
    background-color: #1a1a1a;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p, .section ul {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "🔥";
    margin-right: 10px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
