:root {
    --bunny-lilac: #E6E6FA;
    --bunny-mint: #98FF98;
    --bunny-gray: #F0F0F0;
    --bunny-text: #6A5ACD;
    --bunny-accent: #FFB7B2;
    --font-heading: 'Amatic SC', cursive;
    --font-body: 'Varela Round', sans-serif;
}

body {
    background-color: var(--bunny-gray);
    color: var(--bunny-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: radial-gradient(#ffffff 20%, transparent 20%), radial-gradient(#ffffff 20%, transparent 20%);
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Varela+Round&display=swap');

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bunny-text);
}

h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: var(--bunny-text);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '🐰';
    font-size: 1.5rem;
    position: absolute;
    top: -20px;
    right: -20px;
    transform: rotate(15deg);
}

/* Components */
.bunny-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(106, 90, 205, 0.1);
    border: 5px solid white;
    position: relative;
}

.bunny-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--bunny-lilac);
    border-radius: 40px;
    z-index: -1;
}

.btn-bunny {
    background-color: var(--bunny-text);
    color: white;
    font-family: var(--font-body);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.2);
}

.btn-bunny:hover {
    transform: translateY(-3px);
    color: white;
    background-color: #5848c2;
    text-decoration: none;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--bunny-lilac) 100%);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 20px 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Countdown */
.bunny-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.count-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--bunny-mint);
}

.count-circle span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--bunny-text);
}

.count-circle small {
    font-size: 0.6rem;
    text-transform: uppercase;
}

/* Canvas */
#bunnyCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Music */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-bunny {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--bunny-text);
    border: 2px solid var(--bunny-lilac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-music-bunny:hover {
    transform: scale(1.1);
}