 /* --- OSNOVNI STIL (MODERAN I ČIST) --- */
        :root {
            --bg-deep-space: #010206; /* Još tamnija crna za kontrast */
            --alien-neon: #00f2fe; /* Cijan plava, podseća na energiju */
            --alien-purple: #4facfe; /* Prelaz ka ljubičastoj za dubinu */
            --text-main: #e0e6ed;
            --text-muted: #8892b0;
            --font-main: 'Geist Sans', 'Segoe UI', Roboto, sans-serif; /* Moderniji font */
            --font-mono: 'Fira Code', 'Courier New', monospace; /* Za tehničke detalje */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: cell; /* Vanzemaljski kursor */
        }

        body {
            background-color: var(--bg-deep-space);
            color: var(--text-main);
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- POZADINA: BOGAT SVEMIR, ZVIJEZDE I NEBESKA TIJELA --- */
        #space-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -2;
            background: radial-gradient(circle at center, #050a1e 0%, #010206 100%);
            overflow: hidden;
        }

        /* Slojevi zvijezda (Parallax efekat se dešava u JS) */
        .stars-layer {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: transparent;
        }

        /* --- NEBESKA TIJELA (PLANETE, MAGLICE) --- */
        .celestial-body {
            position: absolute;
            border-radius: 50%;
            opacity: 0.7;
            filter: blur(2px);
            animation: bodyFloat linear infinite; /* Glavna, lagana animacija plutanja */
        }

        /* Velika, plava planeta (desno) */
        .planet-main {
            width: 200px; height: 200px;
            background: radial-gradient(circle at 30% 30%, var(--alien-purple) 0%, #000 100%);
            top: 15%; right: 10%;
            animation-duration: 250s; /* Vrlo sporo */
            box-shadow: 0 0 60px rgba(79, 172, 254, 0.3);
        }

        /* Manja, crvena planeta (lijevo) */
        .planet-red {
            width: 90px; height: 90px;
            background: radial-gradient(circle at 30% 30%, #ff1f5a 0%, #000 100%);
            bottom: 10%; left: 8%;
            animation-duration: 350s; /* Još sporije */
            opacity: 0.5;
            box-shadow: 0 0 30px rgba(255, 31, 90, 0.2);
        }

        /* Maglica (Misty ring) */
        .nebula {
            width: 300px; height: 150px;
            background: radial-gradient(ellipse at center, rgba(127, 0, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
            top: 50%; left: 20%;
            transform: translate(-50%, -50%) rotate(30deg);
            animation: nebulaPulse 200s ease-in-out infinite;
            filter: blur(5px);
            opacity: 0.4;
        }

        /* Daleka, mala zvjezdana maglica */
        .nebula-distant {
            width: 100px; height: 100px;
            background: radial-gradient(circle at center, rgba(0, 242, 254, 0.1) 0%, rgba(0,0,0,0) 60%);
            bottom: 30%; right: 25%;
            filter: blur(3px);
            opacity: 0.3;
        }

        /* --- ANIMACIJE --- */
        /* Lagano i suptilno kretanje-plutanje (za planete) */
        @keyframes bodyFloat {
            from { transform: rotate(0deg) translateX(10px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
        }

        /* Lagano pulsiranje maglice */
        @keyframes nebulaPulse {
            0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) rotate(30deg) scale(1); }
            50% { opacity: 0.2; transform: translate(-50%, -50%) rotate(35deg) scale(1.1); }
        }

        /* --- STRUKTURA I SADRŽAJ --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
            z-index: 1;
        }

        /* --- HEADER --- */
        header {
            text-align: center;
            margin-bottom: 120px;
            position: relative;
        }

        .profile-pic {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 4px solid transparent;
            background: linear-gradient(var(--bg-deep-space), var(--bg-deep-space)) padding-box,
                        linear-gradient(135deg, var(--alien-neon), var(--alien-purple)) border-box;
            object-fit: cover;
            margin-bottom: 30px;
            box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .profile-pic:hover {
            transform: scale(1.1) rotate(5deg);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #fff 30%, var(--alien-neon) 100%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .subtitle {
            font-family: var(--font-mono);
            color: var(--text-muted);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* --- PANELI (MODERAN GLASS-MORPHISM) --- */
        .alien-panel {
            background: rgba(10, 17, 40, 0.6);
            border: 1px solid rgba(0, 242, 254, 0.2);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(12px); /* Jači blur za "staklo" */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .alien-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--alien-neon), transparent);
        }

        .alien-panel h2 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }

        .alien-panel h2::before {
            content: '◷'; /* Vanzemaljski simbol */
            color: var(--alien-neon);
            font-family: var(--font-mono);
        }

        /* --- USLUGE GRID --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .service-card {
            background: rgba(2, 4, 10, 0.8);
            border: 1px solid rgba(79, 172, 254, 0.1);
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card:hover {
            border-color: var(--alien-neon);
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 242, 254, 0.2);
        }

        .service-card h3 {
            color: var(--alien-neon);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* --- FORMA (MODERNA) --- */
        .alien-form {
            display: grid;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        input, textarea {
            width: 100%;
            padding: 18px;
            background: rgba(2, 4, 10, 0.9);
            border: 1px solid rgba(79, 172, 254, 0.2);
            border-radius: 10px;
            color: #fff;
            font-family: var(--font-main);
            font-size: 1rem;
            transition: 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--alien-neon);
            box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
        }

        .alien-btn {
            background: linear-gradient(135deg, var(--alien-purple) 0%, var(--alien-neon) 100%);
            color: #010206;
            border: none;
            padding: 18px 30px;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .alien-btn:hover {
            box-shadow: 0 0 35px var(--alien-neon);
            transform: scale(1.02);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; letter-spacing: -1px; }
            .container { padding: 40px 15px; }
            .alien-panel { padding: 30px 20px; }
            .profile-pic { width: 140px; height: 140px; }
            .planet-main { width: 120px; height: 120px; right: 5%; top: 10%; }
            .planet-red { width: 60px; height: 60px; left: 5%; bottom: 5%; }
            .nebula { width: 200px; height: 100px; left: 10%; }
        }


/* Arhiva Projekata*/
.portfolio-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    color: #00f2ff; /* Tvoja cijan boja sa slike */
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    border-color: #00f2ff;
    background: rgba(0, 242, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.portfolio-section h3 {
    color: var(--alien-neon);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;      
}



.card-link {
    font-size: 0.8rem;
    font-weight: bold;
    color: #00f2ff;
    opacity: 0.7;
}

.portfolio-card:hover .card-link {
    opacity: 1;
}




/*FOOTER*/

.kosmicki-footer {
    width: 100%;
    padding: 60px 20px 30px;
    background: rgba(10, 10, 15, 0.7); /* Tamna prozirna pozadina */
    backdrop-filter: blur(15px); /* Glassmorphism */
    border-top: 1px solid rgba(0, 242, 255, 0.2); /* Tirkizna linija kao na tvojim gumbima */
    margin-top: 100px;
    font-family: 'Inter', sans-serif; /* Ili font koji već koristiš */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.status-text {
    color: #00f2ff;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

.pulse-dot {
    height: 8px;
    width: 8px;
    background-color: #00f2ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px #00f2ff;
    animation: pulse-animation 2s infinite;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: 0.3s;
    opacity: 0.7;
}

.footer-nav a:hover {
    opacity: 1;
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 242, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 5px 10px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #00f2ff;
    color: #000;
}













