body {
    background-color: #000;
    color: gold;
    font-family: Arial, sans-serif;
}

button {
    background-color: gold;
    color: black;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
}

/* Success Page Styling */
.success-body {
    background: #000;
    color: #d4af37;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.success-container {
    text-align: center;
    padding: 40px;
    border: 2px solid #d4af37;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.success-checkmark {
    font-size: 80px;
    color: #00ff66;
    margin-bottom: 20px;
    animation: pop 0.4s ease-out;
}

@keyframes pop {
    0% { transform: scale(0.2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.25s ease;
}

.success-btn:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}
