/*
Theme Name: My Love Theme
Author: Soyash
Version: 1.0
*/

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

body{
    font-family:Arial,sans-serif;
    background:linear-gradient(135deg,#ff9a9e,#fad0c4,#fbc2eb);
    min-height:100vh;
    overflow-x:hidden;
    color:white;
}

.container{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.card{
    width:100%;
    max-width:900px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

h1{
    font-size:55px;
    margin-bottom:10px;
}

.subtitle{
    font-size:18px;
    margin-bottom:30px;
}

.photo{
    width:260px;
    height:340px;
    object-fit:cover;
    border-radius:25px;
    border:5px solid rgba(255,255,255,0.4);
    margin-bottom:30px;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.time{
    background:rgba(255,255,255,0.18);
    padding:20px;
    border-radius:20px;
    min-width:110px;
}

.time h2{
    font-size:35px;
}

.btn{
    display:inline-block;
    padding:16px 35px;
    background:white;
    color:#ff4f81;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
}

.letter{
    display:none;
    margin-top:35px;
    text-align:left;
    background:rgba(255,255,255,0.15);
    padding:30px;
    border-radius:25px;
    line-height:1.9;
    font-size:18px;
}
