@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Osnovno resetiranje i font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #020617; /* Duboka tamno plava (Slate 950) */
    background-image: 
        radial-gradient(at 0% 0%, rgba(30, 64, 175, 0.15) 0, transparent 50%), 
        radial-gradient(at 100% 100%, rgba(30, 58, 138, 0.1) 0, transparent 50%);
    color: #f1f5f9;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

/* Naslov: MOJE VJEŽBE */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Podnaslov efekt (automatski dodaje profinjenost) */
h1::after {
    content: 'KOLEKCIJA RADOVA';
    display: block;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #3b82f6;
    margin-top: 10px;
    font-weight: 400;
}

/* Uklanjanje viška razmaka iz tvog HTML-a */
br {
    display: none;
}

/* Glavna lista - Glassmorphism efekt */
ul {
    list-style: none;
    width: 100%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px;
    margin-top: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Redovi u listi */
li {
    margin-bottom: 5px;
}

li:last-child {
    margin-bottom: 0;
}

/* Linkovi */
a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

/* OKRUGLA TOČKICA UMJESTO UPITNIKA */
a::before {
    content: ''; /* Prazan sadržaj jer ćemo točkicu napraviti pomoću oblika */
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #3b82f6; /* Plava boja */
    border-radius: 50%; /* Radi krug */
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* Hover efekt na linkove i točkicu */
a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding-left: 25px;
}

a:hover::before {
    background-color: #60a5fa;
    transform: scale(1.4); /* Točkica se malo poveća na hover */
    box-shadow: 0 0 12px rgba(90, 172, 240, 0.8);
}