/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f3e8f5; /* Light lavender/grey base */
    /* Optional: subtle pattern overlay similar to your image */
    background-image: radial-gradient(#d1c4e9 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px; /* Limits width on PC/Tablet */
    text-align: center;
    background: rgba(255, 255, 255, 0.6); /* Glassmorphism effect */
    padding: 40px 20px;
    border-radius: 20px;
}

h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Button Styling */
.btn {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px; /* Rounded pill shape */
    background: linear-gradient(90deg, #e91e63, #c2185b);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
}

.btn.disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

footer {
    margin-top: 50px;
}

footer p {
    font-size: 0.85rem;
    color: #d81b60;
    font-weight: bold;
}

/* Responsiveness */

/* Tablets (Portrait) */
@media (min-width: 600px) {
    h1 { font-size: 1.8rem; }
    .container { padding: 60px 40px; }
}

/* Desktop/Laptops */
@media (min-width: 1024px) {
    .container {
        max-width: 450px; /* Keeps it looking like a mobile app even on big screens */
    }
    .btn { font-size: 1.1rem; }
}