body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;

    background-image: url("site_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    text-align: center;
    margin: auto;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius:10px;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

h1 {
    font-size: 3em;
    margin: 10px 0;
}

.tagline {
    opacity: 0.8;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 1px;
    background: #4CAF50;
    color: white;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    background: #45a049;
}

.btn.secondary {
    background: #5865F2;
}

.btn.secondary:hover {
    background: #4752c4;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    opacity: 0.7;
}