/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Landing Page Layout */
.landing-container {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* Animated Buttons */
.animated-button {
    display: block;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #ff512f, #dd2476);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 81, 47, 0.5);
    text-align: center;
}

.animated-button:hover {
    background: linear-gradient(45deg, #dd2476, #ff512f);
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(255, 81, 47, 0.7);