﻿.text-orange {
    color: #f8a036 !important;
}
.avatar {
    width: 150px;
    height: 150px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 2rem 0;
    left: 50%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(ellipse at top, #0e0e0e 0%, #000 100%);
    color: #fff;
    overflow-x: hidden;
}

h1, h4 {
    color: #f7931a;
}

a {
    color: #00ffe1;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 2;
}

    .hero img.avatar {
        width: 140px;
        border-radius: 50%;
        box-shadow: 0 0 30px #f7931a;
    }

.social-icons a {
    margin: 10px;
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

    .social-icons a:hover {
        transform: scale(1.2);
        box-shadow: 0 0 15px #0ff;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.card-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

    .card-item:hover {
        transform: translateY(-5px) scale(1.04);
        box-shadow: 0 0 25px rgba(247, 147, 26, 0.3);
        text-decoration: none;
    }

footer {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.9rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
}

.terminal-box {
    background: #111;
    color: #0f0;
    padding: 20px;
    font-family: monospace;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,255,0,0.2);
    margin: 30px auto;
    max-width: 700px;
}

    .terminal-box p::after {
        content: "█";
        animation: blink 1s infinite;
    }

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}