﻿/* ==========================================================
   HAPPY BIRTHDAY Neha ❤️
   PREMIUM WEBSITE
   STYLE.CSS - PART 1
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{

    font-family:'Poppins',sans-serif;
    background:#070710;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0b0b18;

}

::-webkit-scrollbar-thumb{

    background:#ff4d8d;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff80b3;

}

/* ================= Loader ================= */

#loader{

    position:fixed;
    inset:0;
    background:#070710;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;

}

.loader-heart{

    font-size:70px;
    animation:pulse 1s infinite;

}

#loader h2{

    margin-top:20px;
    font-size:34px;
    color:white;

}

#loader p{

    color:#bbb;
    margin-top:10px;

}

/* ================= Progress ================= */

#progressBar{

    position:fixed;
    left:0;
    top:0;
    width:0%;
    height:5px;
    background:#ff4d8d;
    z-index:9999;

}

/* ================= Cursor ================= */

.cursor-glow{

    width:18px;
    height:18px;
    position:fixed;
    border-radius:50%;
    background:#ff4d8d;
    pointer-events:none;
    filter:blur(12px);
    z-index:9998;
    transition:.08s;

}

/* ================= Background ================= */

.bg-animation{

    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top,#28103f,#070710 65%);
    z-index:-5;

}

.stars{

    position:fixed;
    inset:0;
    background-image:
    radial-gradient(white 1px,transparent 1px);

    background-size:70px 70px;
    opacity:.25;
    animation:moveStars 80s linear infinite;

}

/* ================= Floating Hearts ================= */

.floating-hearts{

    position:fixed;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    z-index:-1;

}

.heart{

    position:absolute;
    color:#ff4d8d;
    animation:floatHeart 10s linear forwards;

}

/* ================= Music ================= */

#musicBtn{

    position:fixed;
    right:30px;
    bottom:30px;

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:#ff4d8d;

    color:white;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(255,77,141,.35);

    z-index:100;

    transition:.35s;

}

#musicBtn:hover{

    transform:scale(1.15);

}

#switchSongBtn{

    position:fixed;
    right:30px;
    bottom:98px;

    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:#2a2a3d;

    color:white;

    font-size:17px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    z-index:100;

    transition:.35s;

}

#switchSongBtn:hover{

    transform:scale(1.15) rotate(90deg);

}

/* ================= Section ================= */

section{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    padding:100px 10%;

    position:relative;

}

/* ================= Titles ================= */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:52px;
    color:#fff;
    font-family:'Great Vibes',cursive;

}

.section-title p{

    color:#ccc;
    margin-top:15px;
    font-size:18px;

}

/* ================= Landing ================= */

.landing{

    text-align:center;
    position:relative;
    overflow:hidden;

}

.landing-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.65));

}

.landing-content{

    position:relative;
    z-index:2;

}

.welcome{

    color:#ff9cc5;
    letter-spacing:5px;

}

.landing h1{

    font-size:90px;
    font-family:'Great Vibes',cursive;

    margin-top:20px;

}

.landing h2{

    color:#ff4d8d;

    font-size:48px;

}

.landing p{

    max-width:700px;

    margin:30px auto;

    color:#ddd;

}

/* ================= Buttons ================= */

.btn,
#beginBtn{

    padding:16px 40px;

    background:#ff4d8d;

    color:white;

    border:none;

    border-radius:50px;

    cursor:pointer;

    text-decoration:none;

    font-size:18px;

    transition:.35s;

    display:inline-block;

    margin-top:25px;

}

.btn:hover,
#beginBtn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(255,77,141,.4);

}

.btn.outline{

    background:transparent;
    border:2px solid #ff4d8d;

}

/* ================= Hero ================= */

.hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-image{

    width:420px;
    height:420px;

    border-radius:50%;

    overflow:hidden;

    margin:auto;

    border:8px solid rgba(255,255,255,.12);

    box-shadow:0 30px 80px rgba(255,77,141,.35);

}

.hero-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 10%;

}

.hero-right h1{

    font-size:72px;
    font-family:'Great Vibes',cursive;

}

.hero-right h2{

    color:#ff4d8d;
    font-size:42px;
    margin-top:10px;

}

.hero-right p{

    margin:30px 0;
    color:#ddd;
    font-size:18px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* ================= Quote ================= */

.quote{

    min-height:60vh;

}

.quote-box{

    max-width:850px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:60px;

    backdrop-filter:blur(15px);

    text-align:center;

}

.quote-box h2{

    font-size:42px;

    font-family:'Great Vibes',cursive;

}

.quote-box p{

    color:#ff9cc5;

    margin-top:20px;

}

/* ================= Story ================= */

.story{

    background:transparent;

}

.story-card{

    width:100%;
    max-width:950px;

    background:rgba(255,255,255,.04);

    margin-bottom:40px;

    border-radius:25px;

    padding:45px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.35s;

}

.story-card:hover{

    transform:translateY(-10px);

    border-color:#ff4d8d;

    box-shadow:0 20px 60px rgba(255,77,141,.25);

}

.story-card h3{

    color:#ff4d8d;

    margin-bottom:15px;

    font-size:28px;

}

.story-card p{

    color:#ddd;

}

/* ================= Animations ================= */

@keyframes pulse{

0%{transform:scale(1);}
50%{transform:scale(1.2);}
100%{transform:scale(1);}

}

@keyframes moveStars{

from{

background-position:0 0;

}

to{

background-position:0 3000px;

}

}

@keyframes floatHeart{

0%{

transform:translateY(100vh) scale(.5);
opacity:0;

}

20%{

opacity:1;

}

100%{

transform:translateY(-120vh) scale(1.3);
opacity:0;

}

}
/* ==========================================================
   STYLE.CSS - PART 2A
   Gallery • Cards • Promise
==========================================================*/

/* ================= Gallery ================= */

.gallery{
    background:linear-gradient(to bottom,#070710,#111126);
}

.gallery-grid{

    width:100%;
    max-width:1300px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    cursor:pointer;

    transition:.4s;

    background:#111;

    aspect-ratio:4/5;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    transition:.6s;

}

.gallery-item::before{

    content:"❤️";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:70px;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.4s;

    z-index:2;

}

.gallery-item:hover img{

    transform:scale(1.05);

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(255,77,141,.35);

}

/* ================= Special Section ================= */

.special{

    background:#0c0c18;

}

.cards{

    width:100%;
    max-width:1300px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.35s;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#ff4d8d;

    box-shadow:0 25px 70px rgba(255,77,141,.25);

}

.card i{

    font-size:48px;

    color:#ff4d8d;

    margin-bottom:20px;

}

.card h3{

    font-size:26px;

    margin-bottom:15px;

}

.card p{

    color:#d9d9d9;

}

/* ================= Love Meter Game ================= */

.love-game{

    background:linear-gradient(to bottom,#0d0d1b,#140a1f);

    text-align:center;

    padding:100px 20px;

}

.love-game-box{

    max-width:480px;

    margin:0 auto;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,77,141,.3);

    border-radius:28px;

    padding:44px 30px;

    box-shadow:0 25px 60px rgba(255,77,141,.15);

}

.love-meter{

    width:100%;

    height:18px;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    overflow:hidden;

    margin-bottom:32px;

    border:1px solid rgba(255,77,141,.25);

}

.love-meter-bar{

    height:100%;

    width:0%;

    border-radius:12px;

    background:linear-gradient(90deg,#ff4d8d,#ff9ec4);

    transition:width .15s ease;

}

.love-heart-btn{

    font-size:90px;

    cursor:pointer;

    user-select:none;

    -webkit-user-select:none;

    display:inline-block;

    filter:drop-shadow(0 0 20px rgba(255,77,141,.4));

    transition:transform .08s ease;

}

.love-heart-btn:active{

    transform:scale(1.2);

}

.love-heart-btn.disabled{

    pointer-events:none;

    opacity:.5;

}

.love-timer{

    margin-top:20px;

    font-size:17px;

    color:#ff9ec4;

}

.love-tapcount{

    margin-top:6px;

    font-size:22px;

    color:#fff;

    font-weight:600;

}

.love-game-box .btn{

    margin-top:26px;

}

.love-result{

    margin-top:26px;

    font-size:18px;

    line-height:1.8;

    color:#fff;

    min-height:0;

}

.love-result .love-result-title{

    display:block;

    font-family:'Great Vibes',cursive;

    font-size:44px;

    color:#ff4d8d;

    margin-bottom:10px;

}

/* ================= Promise ================= */

.promise{

    background:
    radial-gradient(circle at center,
    #1a1232,
    #070710);

}

.promise-box{

    max-width:900px;

    padding:70px;

    border-radius:30px;

    text-align:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    box-shadow:0 20px 70px rgba(255,77,141,.15);

}

.promise-box h2{

    font-size:48px;

    color:#ff4d8d;

    margin-bottom:30px;

    font-family:'Great Vibes',cursive;

}

.promise-box p{

    color:#eee;

    font-size:20px;

    line-height:2;

}

/* ================= Hover Glow ================= */

.card::after,
.story-card::after,
.promise-box::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    opacity:0;

    transition:.4s;

    pointer-events:none;

    box-shadow:0 0 60px rgba(255,77,141,.18);

}

.card:hover::after,
.story-card:hover::after,
.promise-box:hover::after{

    opacity:1;

}/* ==========================================================
   STYLE.CSS - PART 2B
   Envelope • Letter • Countdown • Lightbox
==========================================================*/

/* ================= Envelope ================= */

.envelope-section{

    background:#090915;

}

.envelope{

    width:420px;
    height:300px;

    position:relative;

    margin:60px auto;

    background:#f7efe6;

    border-radius:10px;

    box-shadow:0 25px 80px rgba(0,0,0,.45);

    overflow:hidden;

}

.envelope::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    clip-path:polygon(0 0,50% 55%,100% 0);

    background:#ead8c8;

    z-index:5;

}

.envelope::after{

    content:"❤";

    position:absolute;

    top:18px;
    left:50%;

    transform:translateX(-50%);

    width:55px;
    height:55px;

    background:#d73b57;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:22px;

    z-index:6;

    box-shadow:0 0 25px rgba(215,59,87,.45);

}

.letter-photo{

    position:absolute;

    width:230px;

    left:50%;

    top:65px;

    transform:translateX(-50%);

    transition:.7s;

}

.envelope:hover .letter-photo{

    transform:translate(-50%,-90px);

}

.letter-photo img{

    width:100%;

    border:12px solid #fff;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

/* ================= Countdown ================= */

.countdown{

    background:linear-gradient(to bottom,#111126,#090915);

    text-align:center;

}

.countdown h2{

    font-size:60px;

    font-family:'Great Vibes',cursive;

    color:#ff4d8d;

    margin-bottom:25px;

}

.countdown p{

    color:#eee;

    font-size:22px;

    max-width:700px;

    line-height:2;

}
/* ================= Couple Photo ================= */

.couple-photo {
    width: min(360px, 90%);
    margin: 22px auto 10px;
    padding: 9px;
    background: #fff;
    border-radius: 8px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(255, 70, 160, 0.18);
    transform: rotate(-2deg);
}

.couple-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 3px;
}

.photo-caption {
    margin: 16px auto 8px;
    max-width: 400px;
    color: #ffd5e7;
    font-family: 'Great Vibes', cursive;
    font-size: 26px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 600px) {

    .couple-photo {
        width: 85%;
    }

    .photo-caption {
        font-size: 23px;
    }

}

/* ================= Letter ================= */

.letter{

    background:#070710;

}

.letter-box{

    max-width:760px;

    margin:auto;

    padding:45px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    box-shadow:0 25px 70px rgba(255,77,141,.18);

}

.letter-box h2{

    text-align:center;

    color:#ff4d8d;

    font-size:38px;

    font-family:'Great Vibes',cursive;

    margin-bottom:25px;

    font-weight:400;

}
#typing{

    color:#ececec;

    font-size:17px;

    line-height:1.9;

    white-space:pre-line;

    text-align:left;

    font-weight:400;

}
/* ================= Lightbox ================= */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

    box-shadow:0 25px 80px rgba(255,255,255,.15);

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    font-size:55px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    color:#ff4d8d;

    transform:rotate(90deg);

}

/* ================= Glass Effect ================= */

.gallery-item,
.card,
.story-card,
.promise-box,
.letter-box{

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

}

/* ================= Responsive ================= */

@media(max-width:991px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-image{

width:330px;
height:330px;

}

.hero-buttons{

justify-content:center;

}

.letter-box,
.promise-box{

padding:40px;

}

.envelope{

width:340px;
height:240px;

}

}

@media(max-width:600px){

.section-title h2{

font-size:40px;

}

.hero-right h1{

font-size:52px;

}

.hero-right h2{

font-size:30px;

}

.hero-image{

width:260px;
height:260px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr;

}

.envelope{

width:290px;
height:210px;

}

.letter-photo{

width:170px;

}

#typing{

font-size:17px;

}

}
/* ==========================================================
   STYLE.CSS - PART 3
   Cake • Gift • Ending • Lanterns • Footer • Animations
==========================================================*/

/* ================= Cake Section ================= */

.cake-section{
    background:linear-gradient(180deg,#090915,#15152b);
    text-align:center;
}

.cake{
    position:relative;
    width:260px;
    height:240px;
    margin:50px auto;
}

.plate{
    position:absolute;
    bottom:0;
    width:260px;
    height:18px;
    background:#ddd;
    border-radius:50px;
}

.cake-body{
    position:absolute;
    bottom:18px;
    left:30px;
    width:200px;
    height:120px;
    background:linear-gradient(#ffb6c1,#ff7aa8);
    border-radius:15px;
}

.icing{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:28px;
    background:#fff;
    border-radius:15px 15px 8px 8px;
}

.candles{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:-45px;
}

.candle{
    width:10px;
    height:45px;
    background:#fff;
    position:relative;
    border-radius:5px;
}

.candle::before{
    content:"";
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    width:10px;
    height:14px;
    background:#ffd54f;
    border-radius:50%;
    animation:flicker .8s infinite;
}

/* ================= Gift Popup ================= */

.gift-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.gift-modal.show{
    display:flex;
}

.gift-content{
    position:relative;
}

#closeGift{
    position:absolute;
    top:-50px;
    right:-10px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    z-index:100;
}

.gift-envelope{
    position:relative;
    width:420px;
}

.envelope-img{
    width:100%;
    display:block;
    position:relative;
    z-index:2;
}

.gift-photo{
    position:absolute;
    width:220px;
    left:50%;
    top:145px;

    transform:translate(-50%,120px);

    opacity:0;

    border:10px solid #fff;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    transition:all 1.2s ease;

    z-index:1;
}

.gift-modal.show .gift-photo{

    opacity:1;

    transform:translate(-50%,-40px);

}


/* ================= Ending ================= */

.ending{
    background:
    radial-gradient(circle,#28103f,#070710);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.ending-content{
    position:relative;
    z-index:2;
}

.ending h1{
    font-size:90px;
    font-family:'Great Vibes',cursive;
}

.ending h2{
    color:#ff4d8d;
    font-size:42px;
    margin:20px 0;
}

.ending h3{
    margin-top:30px;
    color:#ff80b3;
    font-size:34px;
}

.ending p{
    max-width:850px;
    margin:auto;
    color:#ddd;
    line-height:2;
    font-size:20px;
}

.ending span{
    display:block;
    margin-top:35px;
    font-size:22px;
}

/* ================= Lanterns ================= */

.lantern-container{
    position:absolute;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    z-index:1;
}

.lantern{
    position:absolute;
    bottom:-140px;
    width:34px;
    height:44px;
    background:linear-gradient(180deg,#ffdf8a,#ff9e4d);
    border-radius:14px 14px 8px 8px;
    box-shadow:
        0 0 18px 6px rgba(255,180,90,.55),
        inset 0 0 8px rgba(255,255,255,.5);
    opacity:0;
    animation:lanternFloat linear infinite;
}

.lantern::before{
    content:"";
    position:absolute;
    top:-10px;
    left:50%;
    width:1px;
    height:10px;
    background:rgba(255,220,160,.7);
    transform:translateX(-50%);
}

.lantern::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:22px;
    height:30px;
    border-radius:50%;
    background:rgba(255,235,190,.55);
    filter:blur(4px);
    transform:translate(-50%,-50%);
}

.lantern:nth-child(1){
    left:8%;
    animation-duration:15s;
    animation-delay:0s;
}

.lantern:nth-child(2){
    left:30%;
    animation-duration:18s;
    animation-delay:2.5s;
}

.lantern:nth-child(3){
    left:55%;
    animation-duration:20s;
    animation-delay:5s;
}

.lantern:nth-child(4){
    left:78%;
    animation-duration:17s;
    animation-delay:1.2s;
}

.lantern:nth-child(5){
    left:92%;
    animation-duration:22s;
    animation-delay:3.8s;
}

/* ================= Fireworks ================= */

#fireworks{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:5;
}

/* ================= Footer ================= */

footer{
    padding:40px 20px;
    text-align:center;
    background:#05050b;
    border-top:1px solid rgba(255,255,255,.08);
}

footer p{
    color:#aaa;
}

/* ================= Floating Animation ================= */

.hero-image{
    animation:heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* ================= Candle ================= */

@keyframes flicker{
    0%{
        transform:translateX(-50%) scale(1);
        opacity:1;
    }
    50%{
        transform:translateX(-50%) scale(1.3);
        opacity:.7;
    }
    100%{
        transform:translateX(-50%) scale(1);
        opacity:1;
    }
}

/* ================= Lantern ================= */

@keyframes lanternFloat{
    from{
        transform:translateY(0);
        opacity:0;
    }
    15%{
        opacity:1;
    }
    to{
        transform:translateY(-120vh);
        opacity:0;
    }
}

/* ================= Fade ================= */

.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:.8s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= Responsive ================= */

@media(max-width:768px){

    .landing h1{
        font-size:58px;
    }

    .landing h2{
        font-size:34px;
    }

    .hero-right h1{
        font-size:52px;
    }

    .hero-right h2{
        font-size:30px;
    }

    .ending h1{
        font-size:60px;
    }

    .ending h2{
        font-size:30px;
    }

    .quote-box{
        padding:35px;
    }

    .quote-box h2{
        font-size:32px;
    }

    .cake{
        transform:scale(.9);
    }

}

/*================ PASSWORD LOCK ================*/

body.locked{
    overflow:hidden;
}

.site-lock{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#05050d,#0d0d1f,#05050d);
    backdrop-filter:blur(20px);
    z-index:999999999;
    animation:fadeIn .6s ease;
}

.lock-card{
    width:460px;
    max-width:92%;
    padding:50px 45px;
    text-align:center;
    background:rgba(23,23,38,.95);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    box-shadow:0 25px 80px rgba(0,0,0,.55);
}

.lock-heart{
    font-size:70px;
    margin-bottom:18px;
    animation:pulse 2s infinite;
}

.lock-card h2{
    color:#fff;
    font-size:42px;
    margin-bottom:18px;
    font-family:'Great Vibes',cursive;
    font-weight:400;
}

.lock-message{
    color:#d8d8d8;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.lock-message b{
    color:#ff4d8d;
}

.lock-card input{
    width:100%;
    padding:16px 20px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#fff;
    font-size:17px;
    margin-bottom:10px;
    transition:.3s;
}

.lock-card input:focus{
    box-shadow:0 0 0 3px rgba(255,77,141,.35);
}

.lock-hint{
    color:#9aa0c3;
    font-size:14px;
    font-style:italic;
    margin-bottom:8px;
    opacity:.85;
}

.lock-hint + .lock-hint{
    margin-bottom:22px;
}

.lock-card button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:60px;
    background:#ff4d8d;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.lock-card button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,77,141,.35);
}

#lockError{
    margin-top:18px;
    color:#ff6b6b;
    min-height:22px;
    font-size:15px;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.12);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}