*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#fffaf3,#f6f1e6);
    overflow-x:hidden;
}

/* START */
.start-page{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.start-title{
    font-family:'Great Vibes',cursive;
    font-size:clamp(38px,8vw,60px);
    color:#b88916;
}

.start-sub{
    margin-top:10px;
    color:#666;
    letter-spacing:2px;
}

.start-btn{
    margin-top:25px;
    padding:14px 35px;
    border:none;
    border-radius:50px;
    background:linear-gradient(145deg,#f1d06b,#b88916);
    font-weight:600;
}

/* CARD */
.card{
    display:none;
    width:92%;
    max-width:520px;
    margin:30px auto;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    text-align:center;
}

.names{
    font-family:'Great Vibes',cursive;
    font-size:44px;
    color:#b88916;
}

.title{
    font-family:'Cinzel',serif;
    font-size:16px;
    color:#333;
}

.text{
    font-size:13px;
    color:#555;
    line-height:1.7;
}

.date{
    margin-top:15px;
    font-size:22px;
    font-weight:600;
    color:#b88916;
}

.info{
    font-size:12px;
    color:#666;
}

/* FLOWERS */
.flower{
    position:fixed;
    top:-40px;
    font-size:18px;
    animation:fall linear infinite;
    opacity:.6;
    z-index:0;
    pointer-events:none;
}

@keyframes fall{
    to{
        transform:translateY(110vh);
    }
}

/* HEART BURST */
.heart-burst{
    position:fixed;
    font-size:20px;
    animation:burst 900ms ease-out forwards;
    pointer-events:none;
    z-index:9999;
}

@keyframes burst{
    100%{
        transform:translate(
            calc(-50px + 100px * var(--x)),
            calc(-50px + 100px * var(--y))
        ) scale(0);
        opacity:0;
    }
}.countdown-box{
    margin-top:20px;
    padding:18px;
    border-radius:16px;

    background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg,#f1d06b,#b88916,#f6e7b0) border-box;

    border:2px solid transparent;

    position:relative;
}

/* ÇİÇEK SÜSÜ */
.countdown-box::before,
.countdown-box::after{
    content:"🌸";
    position:absolute;
    font-size:18px;
    opacity:.7;
}

.countdown-box::before{
    top:-10px;
    left:-10px;
}

.countdown-box::after{
    bottom:-10px;
    right:-10px;
}

/* BAŞLIK */
.countdown-title{
    font-size:12px;
    color:#777;
    margin-bottom:6px;
    letter-spacing:1px;
}

/* SAYI */
.countdown{
    font-size:14px;
    font-weight:600;
    color:#b88916;
}