body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: rgba(18, 18, 48, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(120, 100, 255, 0.37);
}

header {
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #e0d9ff;
    margin: 0;
    font-weight: 300;
}

p {
    font-size: 1.1rem;
    color: #d1c4e9;
    line-height: 1.6;
}

.button-container {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b79eff, #8b5cf6);
}