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

body, html {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
}

.content {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00aaff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00aaff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 20px;
    border-bottom: 1px solid #222;
}

section:last-child {
    border-bottom: none;
}

h1, h2, h3 {
    color: #00aaff;
    text-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff;
}

.about-container, .video-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00aaff;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    border: 3px solid #00aaff;
}

.articles-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.article-card, .portfolio-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00aaff;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
}

.article-card:hover, .portfolio-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

.article-card img, .portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid #00aaff;
    background: rgba(10, 10, 10, 0.8);
}
