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

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

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

body {
    font-family: 'Courier Prime', monospace;
    background-color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE8EB 0%, #FFD1D6 50%, #FFE8EB 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.entrance-content {
    text-align: center;
    position: relative;
}

.entrance-hearts {
    margin-bottom: 30px;
}

.floating-heart {
    display: inline-block;
    font-size: 2.5rem;
    color: #FFB5BB;
    margin: 0 10px;
    animation: floatHeart 3s ease-in-out infinite;
    opacity: 0.7;
}

.floating-heart:nth-child(1) { animation-delay: 0s; }
.floating-heart:nth-child(2) { animation-delay: 0.6s; }
.floating-heart:nth-child(3) { animation-delay: 1.2s; }
.floating-heart:nth-child(4) { animation-delay: 1.8s; }
.floating-heart:nth-child(5) { animation-delay: 2.4s; }

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.entrance-title {
    font-family: 'Baloo 2', cursive;
    font-size: 4rem;
    color: #FFB5BB;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 3px;
    text-shadow:
        3px 3px 0px white,
        4px 4px 0px #FFB5BB,
        5px 5px 0px white,
        6px 6px 0px #FFB5BB;
    margin-bottom: 30px;
}

.entrance-bunny {
    margin-bottom: 40px;
}

.entrance-bunny-svg {
    width: 150px;
    height: auto;
    animation: wiggle 3s ease-in-out infinite;
}

.enter-button {
    background: white;
    border: 4px solid #FFB5BB;
    padding: 20px 50px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: #FFB5BB;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 181, 187, 0.3);
    text-transform: lowercase;
}

.enter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 181, 187, 0.5);
    background: #FFB5BB;
    color: white;
}

.enter-button:active {
    transform: scale(0.98);
}

.button-text {
    display: block;
}

.entrance-subtitle {
    margin-top: 25px;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    color: #FFB5BB;
    opacity: 0.8;
}

.main-wrapper {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
    background-color: #FFE8EB;
    background-image:
        radial-gradient(circle at 20px 20px, #FFD1D6 8px, transparent 8px),
        radial-gradient(circle at 60px 60px, #FFECEE 6px, transparent 6px),
        radial-gradient(circle at 40px 80px, #FFD1D6 7px, transparent 7px),
        radial-gradient(circle at 80px 40px, #FFECEE 5px, transparent 5px);
    background-size: 100px 100px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    min-height: 100vh;
    position: relative;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='15' y='25' font-size='20' fill='%23FFB5BB' opacity='0.15'%3E♡%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='65' y='75' font-size='16' fill='%23FFB5BB' opacity='0.12'%3E♡%3C/text%3E%3C/svg%3E");
    background-size: 150px 150px, 180px 180px;
    background-position: 0 0, 50px 50px;
    pointer-events: none;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border: 4px solid #FFB5BB;
    box-shadow: 0 8px 30px rgba(255, 181, 187, 0.4);
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.main-title {
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    color: #FFB5BB;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        3px 3px 0px white,
        4px 4px 0px #FFB5BB,
        5px 5px 0px white,
        6px 6px 0px #FFB5BB;
    margin-bottom: 15px;
}

.heart-divider {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.heart {
    color: #FFB5BB;
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heart:nth-child(odd) {
    animation-delay: 0.1s;
}

.heart:nth-child(even) {
    animation-delay: 0.3s;
}

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

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-box {
    border: 3px solid #FFB5BB;
    padding: 20px;
    background: white;
}

.info-line {
    margin-bottom: 12px;
    line-height: 1.6;
}

.label {
    color: #999;
    font-size: 0.9rem;
}

.value {
    color: #FFB5BB;
    font-weight: 700;
    margin-left: 8px;
}

.bunny-image {
    border: 3px solid #FFB5BB;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FEEEEC;
}

.decorative-bunny {
    width: 100%;
    max-width: 200px;
    height: auto;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.section-heading {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-section {
    margin-bottom: 20px;
}

.content-box {
    border: 3px solid #FFB5BB;
    padding: 20px;
    background: white;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item {
    color: #FFB5BB;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.link-item:hover {
    color: #ff8a94;
    transform: translateX(5px);
}

.gaming-item {
    color: #FFB5BB;
    margin: 5px 0;
}

.game-name {
    font-weight: 700;
}

.wavy-divider {
    margin: 25px 0;
}

.music-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.music-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 3px solid #FFB5BB;
    padding: 15px;
    background: white;
    justify-content: center;
}

.mini-bunny-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.mini-bunny {
    width: 80px;
    height: 80px;
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

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

.spotify-box {
    border: 3px solid #FFB5BB;
    padding: 15px;
    background: white;
    display: flex;
    align-items: center;
}

.spotify-box iframe {
    overflow: hidden;
}

.footer {
    margin-top: 30px;
    text-align: center;
}

.footer-bunny {
    display: flex;
    justify-content: center;
}

.footer-bunny-svg {
    width: 150px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

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

.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    background: white;
    border: 4px solid #FFB5BB;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFB5BB;
    box-shadow: 0 8px 30px rgba(255, 181, 187, 0.5);
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    text-transform: lowercase;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    animation: toastBounce 0.4s ease;
}

.toast-heart {
    display: inline-block;
    animation: heartPulse 0.8s ease-in-out infinite;
    margin: 0 5px;
}

.toast-heart:first-child {
    animation-delay: 0s;
}

.toast-heart:last-child {
    animation-delay: 0.4s;
}

@keyframes toastBounce {
    0% {
        transform: translateX(-50%) translateY(-150px) scale(0.8);
    }
    50% {
        transform: translateX(-50%) translateY(10px) scale(1.05);
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    .main-title {
        font-size: 2rem;
        text-shadow:
            2px 2px 0px white,
            3px 3px 0px #FFB5BB,
            4px 4px 0px white,
            5px 5px 0px #FFB5BB;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .music-section {
        grid-template-columns: 1fr;
    }

    .mini-bunny {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }

    .heart-divider {
        gap: 5px;
    }

    .heart {
        font-size: 1rem;
    }
}
