body {
    background-color: #080808;
    color: #e0e0e0;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid #222;
    z-index: 1000;
    padding: 20px 40px;
}

.back-link {
    color: #61dafb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.back-link:before {
    content: "←";
    margin-right: 8px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(-45deg, #2b5099, #2f1161, #c93e3e, #4a8346);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 0;
}

.project-meta {
    color: #888;
    font-size: 0.9rem;
}

.project-content {
    font-size: 1.1rem;
    color: #b0b0b0;
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.project-content h2:first-child {
    margin-top: 0;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-top: 30px;
}

.project-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #222;
}

.project-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.project-content a {
    color: #61dafb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: bold;
}

.project-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.project-content ul {
    list-style: none;
    padding-left: 0;
}

.project-content li {
    margin-bottom: 0.7em;
    padding-left: 20px;
    position: relative;
}

.project-content li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #61dafb;
    font-weight: bold;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .container {
    padding: 100px 20px 40px;
    }
    
    .project-header h1 {
    font-size: 2.5rem;
    padding: 30px 20px;
    }

    .project-content {
    padding: 25px;
    }
}