body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: #eaeaea;
}

header {
    background-color: #1f1f1f;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00ffcc;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
}

.blog {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.blog-post {
    background-color: #222;
    padding: 1rem 1.5rem;
    border-left: 4px solid #00ffcc;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

footer {
    background-color: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
.project-grid {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-grid h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #1f1f1f;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ffcc77;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-card h3 {
    margin-top: 0;
    color: #00ffcc;
}

.project-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.project-card .btn {
    display: inline-block;
    background-color: #00ffcc;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.project-card .btn:hover {
    background-color: #00e6b2;
}
.project-detail {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

.project-detail h2 {
    text-align: center;
    color: #00ffcc;
}

.hero-img {
    display: block;
    max-width: 100%;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.description ul {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.screenshot-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}

.screenshot-gallery img:hover {
    transform: scale(1.03);
}

.download-btn {
    display: inline-block;
    background-color: #00ffcc;
    color: #000;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.download-btn:hover {
    background-color: #00e6b2;
}
