:root {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --accent-primary: #8c52ff;
    --accent-secondary: #ff5e78;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(140, 82, 255, 0.3);
}

.emoji {
    font-size: 2.5rem;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    flex: 1;
}

.project-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    max-width: 280px;
    width: 100%;
    height: 300px;   
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card:hover::before {
    opacity: 0.03;
}

.project-icon {
    font-size: 2rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    width: 55px;
    height: 55px;
    border-radius: 10px;
    flex-shrink: 0;
}

.project-content {
    flex-grow: 1;
}

.project-content h2 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

footer {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.heart {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    display: inline-block;
    animation: pulse 1.5s infinite;
    margin: 0 3px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .project-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .project-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .project-content p {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .projects {
        display: flex;
        justify-content: center;
    }
    
    .project-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: calc(33.333% - 1.5rem);
    }
    
    .project-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
} 