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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #2d2452;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.95), transparent 9%),
        radial-gradient(circle at 90% 12%, rgba(255,255,255,.75), transparent 10%),
        linear-gradient(135deg, #ff6ec7, #ffd166, #48dbfb, #7bed9f, #a29bfe);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-orbs span {
    position: fixed;
    border-radius: 50%;
    filter: blur(4px);
    opacity: .55;
    z-index: -1;
    animation: orbFloat 9s infinite alternate ease-in-out;
}

.bg-orbs span:nth-child(1) {
    width: 260px;
    height: 260px;
    background: #fff700;
    top: 8%;
    left: 4%;
}

.bg-orbs span:nth-child(2) {
    width: 320px;
    height: 320px;
    background: #ff4fa3;
    right: 4%;
    top: 20%;
    animation-delay: 1s;
}

.bg-orbs span:nth-child(3) {
    width: 240px;
    height: 240px;
    background: #00e5ff;
    left: 15%;
    bottom: 10%;
    animation-delay: 2s;
}

.bg-orbs span:nth-child(4) {
    width: 220px;
    height: 220px;
    background: #7bed9f;
    right: 18%;
    bottom: 8%;
    animation-delay: 3s;
}

@keyframes orbFloat {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-40px) scale(1.12); }
}

.floating-decor {
    position: fixed;
    z-index: 5;
    pointer-events: none;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    animation: floatDecor 4s infinite ease-in-out;
}

.decor-1 { top: 18%; left: 3%; }
.decor-2 { top: 25%; right: 5%; animation-delay: .5s; }
.decor-3 { bottom: 18%; left: 4%; animation-delay: 1s; }
.decor-4 { bottom: 15%; right: 5%; animation-delay: 1.5s; }
.decor-5 { top: 55%; left: 2%; animation-delay: 2s; }
.decor-6 { top: 58%; right: 3%; animation-delay: 2.5s; }

@keyframes floatDecor {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-26px) rotate(6deg); }
}

.music-btn {
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 100;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #7b2cff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.hero {
    min-height: 100vh;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-badge {
    align-self: center;
    background: rgba(255,255,255,.92);
    color: #ff4fa3;
    border: 3px dashed #ffd000;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.main-title {
    margin: 30px 0 20px;
    font-size: clamp(3.2rem, 10vw, 9rem);
    line-height: .95;
    color: #fff;
    text-transform: uppercase;
    text-shadow:
        0 0 8px #fff,
        0 0 18px #ff00cc,
        0 0 45px #ff00cc,
        0 0 80px #00e5ff;
    animation: pulseTitle 2.4s infinite ease-in-out;
}

.main-title span {
    color: #fff700;
    text-shadow:
        4px 4px 0 #ff4fa3,
        0 0 35px #ffffff;
}

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

.hero-text {
    max-width: 880px;
    margin: 0 auto 30px;
    color: white;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    text-shadow: 2px 2px 0 rgba(0,0,0,.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 16px 25px;
    border-radius: 999px;
    font-weight: 900;
    transition: .25s;
    box-shadow: 0 15px 25px rgba(0,0,0,.2);
}

.btn:hover {
    transform: translateY(-6px) scale(1.04);
}

.primary {
    background: #ff4fa3;
    color: white;
}

.secondary {
    background: white;
    color: #7b2cff;
}

.hero-strip {
    margin: 45px auto 0;
    max-width: 900px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.35);
    font-size: clamp(1.7rem, 4vw, 3rem);
    backdrop-filter: blur(8px);
    animation: wiggle 2.5s infinite;
}

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

.edan-zone {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto 40px;
    padding: 45px 25px;
    border: 6px solid white;
    border-radius: 45px;
    background: linear-gradient(135deg, #ffd700, #fff7a8, #ffb700);
    text-align: center;
    box-shadow: 0 0 45px rgba(255,215,0,.9), 0 25px 55px rgba(0,0,0,.22);
    position: relative;
    overflow: hidden;
}

.edan-zone::before {
    content: "✨ ✨ ✨ ✨ ✨ ✨ ✨";
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    opacity: .45;
    font-size: 2rem;
    letter-spacing: 12px;
}

.crown {
    font-size: 5rem;
    animation: crownBounce 1.8s infinite;
}

@keyframes crownBounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

.edan-zone h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: white;
    text-shadow: 4px 4px 0 #d48806;
}

.edan-zone p {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    color: #5c3b00;
}

.gold-line {
    width: 80%;
    height: 12px;
    margin: 24px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.stats,
.award-grid {
    width: min(1100px, calc(100% - 32px));
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.stat-card,
.award-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.88);
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,.18);
    border: 4px solid white;
    font-weight: 900;
}

.stat-card strong {
    display: block;
    font-size: 3.6rem;
    color: #ff4fa3;
}

.stat-card span {
    font-size: 1.25rem;
}

.section-heading {
    margin: 70px auto 25px;
    text-align: center;
}

.section-heading span {
    display: block;
    font-size: 3rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: white;
    text-shadow: 3px 3px 0 #7b2cff;
}

.message-section,
.kids-section,
.awards {
    position: relative;
    z-index: 2;
}

.message-card {
    width: min(980px, calc(100% - 32px));
    margin: auto;
    padding: clamp(28px, 5vw, 52px);
    background: rgba(255,255,255,.92);
    border-radius: 38px;
    border: 5px dashed #ff4fa3;
    box-shadow: 0 25px 55px rgba(0,0,0,.22);
    text-align: center;
}

.message-card p {
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 700;
}

.message-card h3 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #ff4fa3;
}

.kids-grid {
    width: min(1280px, calc(100% - 32px));
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 22px;
}

.kid-card {
    min-height: 190px;
    padding: 28px 18px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255,255,255,.92);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
    border: 5px solid white;
    transform-style: preserve-3d;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.kid-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.7), transparent);
    transform: translateX(-100%) rotate(20deg);
    transition: .5s;
}

.kid-card:hover::after {
    transform: translateX(100%) rotate(20deg);
}

.kid-card:hover {
    transform: translateY(-12px) rotate(2deg) scale(1.05);
    box-shadow: 0 25px 45px rgba(0,0,0,.3);
}

.kid-card:nth-child(5n+1) { background: #ffe4f3; }
.kid-card:nth-child(5n+2) { background: #e3f7ff; }
.kid-card:nth-child(5n+3) { background: #fff4bd; }
.kid-card:nth-child(5n+4) { background: #e6ffed; }
.kid-card:nth-child(5n+5) { background: #efe5ff; }

.kid-emoji {
    font-size: 3.2rem;
    margin-bottom: 12px;
}

.kid-card h3 {
    font-size: 1.55rem;
    color: #2d2452;
    margin-bottom: 8px;
}

.kid-card p {
    font-weight: 800;
    color: #6a5d89;
}

.edan-card {
    background: linear-gradient(135deg, #ffd700, #fff6a4, #ffbd00) !important;
    box-shadow: 0 0 40px rgba(255,215,0,.9);
}

.award-card {
    font-size: 1.3rem;
    background: linear-gradient(135deg, white, #fff6d2);
}

.final-section {
    width: min(950px, calc(100% - 32px));
    margin: 80px auto 50px;
    padding: 50px 25px;
    border-radius: 40px;
    background: rgba(255,255,255,.4);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 4px solid rgba(255,255,255,.8);
}

.final-section h2 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    color: white;
    text-shadow: 3px 3px 0 #ff4fa3;
}

.final-section p {
    margin: 18px 0 28px;
    font-size: 1.4rem;
    color: white;
    font-weight: 900;
}

footer {
    padding: 30px 20px 45px;
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    text-shadow: 2px 2px 0 rgba(0,0,0,.22);
}

.confetti-piece {
    position: fixed;
    top: -60px;
    z-index: 50;
    pointer-events: none;
    font-size: 2rem;
    animation: confettiFall 6s linear forwards;
}

@keyframes confettiFall {
    from {
        transform: translateY(-80px) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translateY(115vh) rotate(720deg);
        opacity: .9;
    }
}

.firework {
    position: fixed;
    pointer-events: none;
    z-index: 999;
    font-size: 1.7rem;
    animation: boom .85s ease-out forwards;
}

@keyframes boom {
    from {
        transform: translate(0,0) scale(.2) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translate(var(--x), var(--y)) scale(1.9) rotate(260deg);
        opacity: 0;
    }
}

@media (max-width: 760px) {
    .floating-decor {
        opacity: .45;
    }

    .music-btn {
        top: auto;
        bottom: 16px;
    }

    .hero {
        padding-top: 70px;
    }

    .kids-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .kid-card {
        min-height: 160px;
    }
}
