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

@font-face {
    font-family: 'Salda';
    src: url('SALDA.otf') format('opentype');
}

@font-face {
    font-family: 'Frank';
    src: url('FRANK.ttf') format('truetype');
}

body {
    background: #0C0A2E;
    min-height: 100vh;
    color: #ffffff;
    font-family: 'Salda', Arial, sans-serif;
    line-height: 1.6;
}

#galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.social {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #DADADA;
    background-color: rgba(123, 44, 191, 0.45);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Salda', Arial, sans-serif;
    border: 1px solid rgba(157, 78, 221, 0.4);
}

.social-button svg {
    flex-shrink: 0;
}

.social-button:hover {
    background-color: rgba(157, 78, 221, 0.65);
    color: #FFFFFF;
}

.bio {
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #EDE9FF;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-family: 'Frank', Arial, sans-serif;
    color: #FFFFFF;
}

.project {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
    background: rgba(14, 11, 61, 0.5);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(199, 125, 255, 0.15);
}

.project-text {
    flex: 1;
}

.project-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Frank', Arial, sans-serif;
    color: #EDE9FF;
}

.project-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #EDE9FF;
}

.project-image {
    flex: 0 0 250px;
}

.project-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(199, 125, 255, 0.3);
}

.donate {
    margin-top: 80px;
    background: linear-gradient(180deg, #0C0A2E 0%, #15124A 100%);
    border-radius: 24px;
    padding: 50px 30px;
}

.donate h2 {
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'Frank', Arial, sans-serif;
    color: #FFFFFF;
}

.kickstarter-link {
    display: inline-block;
    color: #ffffff;
    background-color: #A020F0;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.4);
}

.kickstarter-link:hover {
    background-color: #7B2CBF;
    box-shadow: 0 0 28px rgba(123, 44, 191, 0.6);
}

@media (max-width: 768px) {
    .project {
        flex-direction: column;
        text-align: center;
    }
    
    .project-text {
        text-align: center;
    }
    
    .project-image {
        flex: 0 0 auto;
    }
}
