body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #007bff, #00c6ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.landing-container {
    text-align: center;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    background: #ffffff;
    color: #007bff;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.view {
    background: transparent;
    border: 2px solid #fff;
    color: white;
}

.btn:hover {
    background: #0056b3;
    color: white;
}

.btn.view:hover {
    background: white;
    color: #007bff;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #e0e0e0;
}
