
    /* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.premium-button {
    background: linear-gradient(90deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    width: auto;

}

.premium-button:hover {
    background: linear-gradient(90deg, #0056b3, #007bff);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.butns{
    text-decoration: none!important;
    color: transparent;
}
