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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a1510 0%, #2d2419 50%, #1a1510 100%);
    color: #e5dcc9;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wybie-character {
    height: 80px;
    width: auto;
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.wybie-character:hover {
    transform: scale(1.05);
}

.content {
    padding: 60px 0 40px;
    z-index: 1;
}

.main-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 60px;
    color: #f4d03f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #d5cbb3;
}

.description p {
    margin-bottom: 24px;
}

.signature {
    font-style: italic;
    color: #c9b896;
    margin-top: 30px !important;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #f4d03f 50%, transparent 100%);
    margin: 60px 0 40px;
}

.projects-section {
    margin-bottom: 60px;
}

.projects-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f4d03f;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.3s ease;
    gap: 20px;
}


.project-info {
    flex: 1;
}

.project-title {
    font-weight: 600;
    color: #e5dcc9;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.project-description {
    color: #c9b896;
    font-size: 0.9rem;
    line-height: 1.5;
}

.github-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4d03f;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.github-link:hover {
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.6);
}

.github-link svg {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 15px;
    }
    
    .wybie-character {
        height: 60px;
    }
    
    .sun-1 {
        width: 150px;
        height: 150px;
    }
    
    .sun-2 {
        width: 90px;
        height: 90px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .github-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .content {
        padding: 40px 0 30px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .wybie-character {
        height: 50px;
    }
} 