body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #74b9ff, #023d6a);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#header {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 20px;
    z-index: 20; 
}

#button-container {
    margin-bottom: 10px;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to bottom, #00b09b, #96c93d);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: linear-gradient(to bottom, #009a87, #7db82d);
}

#title {
    color: white;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#anil {
    position: absolute;
    left: calc(50% - 100px);
    top: 60px;
    background: linear-gradient(to right, #fd79a8, #fdcb6e);
    color: #2d3436;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    width: fit-content;
    z-index: 5;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}