* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0,255,0,0.2);
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    color: #00ff6a;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff6a;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.highlight {
    color: #00ff6a;
    font-weight: bold;
}

.btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    color: black;
    background: #00ff6a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px #00ff6a;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px #00ff6a;
}

.badge {
    background: red;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}