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

body {
    font-family: 'Motter Tektura', 'Comic Sans MS', 'Marker Felt', cursive;
    line-height: 1.6;
    color: #333;
    background: #000000;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.profile-image {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2),
        0 0 0 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    object-fit: cover;
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.3),
        0 0 0 3px rgba(255, 255, 255, 0.7);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    margin-bottom: 50px;
}

.logo-container {
    text-align: center;
}

#main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

#main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(255,255,255,0.3));
}

.project-card {
    background: linear-gradient(135deg, #E91E63 0%, #FF69B4 50%, #FF1493 100%);
    border-radius: 25px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    margin: 20px 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #FF1493;
    z-index: 10;
}

.project-card:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.paper-clip {
    position: absolute;
    top: 15px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paper-clip:hover {
    transform: scale(1.1);
}

.stamp-imaginary {
    background-image: url('imaginaryfriend_stamp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stamp-imaginary::before {
    content: '';
}

.stamp-unison {
    background-image: url('unison_icon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stamp-unison::before {
    content: '';
}

.paper-clip::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed #8B0000;
    border-radius: 4px;
}

.letter-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.project-card:hover .letter-content {
    max-height: 200px;
    opacity: 1;
    animation: unfoldLetter 0.5s ease-out;
}

@keyframes unfoldLetter {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    100% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

.project-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.project-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: transparent;
    color: #FF1493;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-decoration: none;
}

.btn-primary:hover {
    color: #FF69B4;
    transform: scale(1.05);
}


.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 10;
}

.social-link {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    transform: scale(1.2);
    opacity: 1;
}

.social-link svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

.credit {
    color: white;
}

.credit p {
    margin: 5px 0;
    opacity: 0.9;
}

.credit p:first-child {
    font-weight: 600;
}

.credit p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

#floating-friends {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-friend {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 1;
    animation: float infinite ease-in-out;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    transition: all 0.3s ease;
}

.floating-friend:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .projects {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .links {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }

    .floating-friend {
        width: 90px;
        height: 90px;
    }
}