/* === BODY === */
body {
    background: url('back.jpg') no-repeat center center fixed;
    background-size: cover; /* makes it fill the screen */
    font-family: 'Press Start 2P', cursive;
    color: #333;
    margin: 0;
    padding: 40px;
    cursor: none;
}
body {
    background: linear-gradient(120deg, rgba(255,240,245,0.5), rgba(255,228,225,0.5), rgba(255,192,203,0.5)), 
                url('back.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Gradient animation */
@keyframes bgGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HEADER / BANNER */
header.banner {
    background: linear-gradient(120deg, #ffb6c1, #ff69b4);
    text-align: center;
    padding: 50px;
    border-bottom: 2px dashed #ff69b4;
    box-shadow: 0 6px 16px rgba(255, 182, 193, 0.35);
    position: relative;
    border-radius: 25px;
}

header h1 {
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px #ff69b4, 0 0 10px #ffb6c1;
    font-size: 36px;
    letter-spacing: 3px;
    transform: rotate(-1deg);
    animation: bounce 2s infinite;
}

header h3 {
    color: #ff69b4;
    margin-top: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px #ffe4e1;
}

/* MAIN LAYOUT */
.main-content { display: flex; gap: 30px; margin-top: 50px; }
.left { flex: 2; }
.right {
    flex: 1;
    background: #ffe4e1;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.35);
}

/* SECTIONS */
section {
    background-color: #ffe4e1;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    width: 100%;
    box-shadow: inset 0 0 20px rgba(255, 192, 203, 0.15), 0 8px 16px rgba(255, 182, 193, 0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

section:hover {
    box-shadow: 0 12px 28px rgba(255, 105, 180, 0.35);
    transform: translateY(-4px);
}

/* LIST ITEMS */
ul { list-style-type: none; padding: 0; }
li {
    background-color: #fff0f5;
    margin: 5px 0;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

li:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #ffebf0;
    box-shadow: 0 6px 14px rgba(255, 105, 180, 0.3);
}

/* Cute icons */
li::before {
    content: "💖";
    margin-right: 6px;
    font-size: 14px;
}

.left section:nth-child(1) li::before { content: "📝"; }
.left section:nth-child(2) li::before { content: "🎨"; }
.left section:nth-child(3) li::before { content: "⛩️"; }
.left section:nth-child(4) li::before { content: "🌟"; }

/* FOOTER */
footer {
    background-color: #ffb6c1;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 2px dashed #ff69b4;
    margin-top: 40px;
    border-radius: 0 0 20px 20px;
}

/* CUSTOM CURSOR */
#cuteCursor {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: bounce 2s infinite;
}

/* bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* heartbeat animation */
@keyframes heartbeat {
  0%, 100% { transform: scale(5); }
  50% { transform: scale(1.1); }
}

/* Floating bubbles (soft) */
.bubble {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    background-color: #ffd6f6;
    animation: bubbleFloat 12s linear infinite;
    z-index: 0;
}

@keyframes bubbleFloat {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0.5; }
    50% { opacity: 0.7; }
    100% { transform: translateY(-50px) scale(1); opacity: 0; }
}

/* Sparkles (subtle) */
.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 1.2s ease forwards;
    background-color: #ffe4e1;
}

@keyframes sparkleFloat {
    0% { transform: scale(0.4); opacity: 1; }
    50% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(0); opacity: 0; }
}
#musicIcon {
    animation: bounce 2s infinite;
    transition: transform 0.2s, filter 0.2s;
}

#musicIcon:hover {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 10px #ff69b4);
}

/* Button hover */
#musicToggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255,105,180,0.5);
}