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

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

:root {
    --roseda-green: #828C6A;
    --sage: #A0AB89;
    --lavender-blush: #F6E5E7;
    --tea-rose: #EFC0BC;
    --light-coral: #E69B97;
    --pink-primary: #F9CDD5;
    --green-accent: #7A8450;
}

body {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--lavender-blush) 0%, var(--pink-primary) 50%, var(--tea-rose) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('nature.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 229, 231, 0.4) 0%, rgba(249, 205, 213, 0.4) 50%, rgba(239, 192, 188, 0.4) 100%);
    z-index: -1;
}

#landing-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F9CDD5 0%, #EFC0BC 50%, #E69B97 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#landing-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.landing-content {
    text-align: center;
}

.landing-title {
    font-size: 3.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: pulse-text 2s ease-in-out infinite;
    cursor: none;
}

@keyframes pulse-text {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

#cursor-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.heart-cursor {
    position: absolute;
    font-size: 16px;
    color: var(--tea-rose);
    animation: float-up 2s ease-out forwards;
    pointer-events: none;
    user-select: none;
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

.container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: none;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--pink-primary);
    box-shadow: 0 10px 30px rgba(249, 205, 213, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.tagline {
    font-size: 1.1em;
    color: var(--tea-rose);
    font-weight: 500;
}

.about-section {
    margin-bottom: 40px;
}

.about-card {
    background: linear-gradient(135deg, rgba(246, 229, 231, 0.6) 0%, rgba(249, 205, 213, 0.4) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--pink-primary);
}

.about-card h2 {
    font-size: 1.8em;
    color: var(--green-accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.decorative-hearts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    font-size: 2em;
}

.decorative-hearts .heart {
    color: var(--tea-rose);
    animation: pulse 2s ease-in-out infinite;
}

.decorative-hearts .heart:nth-child(2) {
    animation-delay: 0.3s;
}

.decorative-hearts .heart:nth-child(3) {
    animation-delay: 0.6s;
}

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

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--pink-primary);
}

footer p {
    color: var(--green-accent);
    font-weight: 500;
    font-size: 0.95em;
}

.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary), var(--tea-rose));
    border: 3px solid white;
    color: white;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(249, 205, 213, 0.5);
    transition: all 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 205, 213, 0.7);
}

.music-btn.playing {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 30px 25px;
    }

    .name {
        font-size: 2em;
    }

    .about-card,
    .social-link {
        font-size: 0.95em;
    }

    .music-player {
        bottom: 20px;
        right: 20px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
    }
}

a, button, .social-link {
    cursor: none !important;
}

*::selection {
    background: var(--pink-primary);
    color: white;
}