* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a2e;
    color: #eee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #e94560, #f5a623, #7ed56f, #6bb5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #aaa;
    font-size: 1.1rem;
}

main {
    flex: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.project-card.fire-glow:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.project-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.project-info p {
    color: #aaa;
    font-size: 0.95rem;
}

.play-btn {
    flex-shrink: 0;
    background: #e94560;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.project-card:hover .play-btn {
    background: #ff6b7a;
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 500px) {
    header h1 {
        font-size: 1.8rem;
    }

    .project-card {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .play-btn {
        width: 100%;
        text-align: center;
    }
}
