body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    user-select: none;
}

body::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.naslov {
    font-family: "Fira Code", monospace;
    font-size: 42px;
    margin-bottom: 40px;
    color: #cfd8dc;
    text-shadow: 0 0 5px rgba(100, 181, 246, 0.6);
    font-weight: 400;
    letter-spacing: 1px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.buttons {
    margin-top: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
    font-family: "Fira Code", monospace;
}

.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

.kontakt {
    text-align: center;
    height: 15px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ===== MEDIA QUERIES ===== */

/* tableti */
@media (max-width: 1024px) {
    .naslov {
        font-size: 34px;
    }
    .logo {
        width: 160px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* mobiteli */
@media (max-width: 600px) {
    body{
        height: 95vh;
    }
    .naslov {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .logo {
        width: 130px;
        margin-bottom: 20px;
    }
    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 80%;
        max-width: 250px;
        font-size: 16px;
        padding: 12px 0;
        margin: 8px 0;
    }
}
