/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#F5F7FC;

    color:#1E293B;

}

.container{

    max-width:480px;

    margin:auto;

    padding:14px;

}

/* ===========================
   BANNER
=========================== */

.banner{

    margin-bottom:18px;

}

.banner img{

    width:100%;

    height:auto;

    display:block;

    border-radius:22px;

}

/* ===========================
   DATE
=========================== */

.date-heading{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:24px;

    font-weight:700;

    margin:18px 4px 14px;

}

/* ===========================
   CARD
=========================== */

.card{

    background:#fff;

    border-radius:22px;

    padding:16px;

    margin-bottom:18px;

    box-shadow:0 8px 24px rgba(15,23,42,.08);

    transition:.25s;

}

.card:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 28px rgba(15,23,42,.12);

}

/* ===========================
   NEW CLOUD
=========================== */

.title-wrapper{

    position:relative;

    display:inline-block;

    margin-bottom:10px;

}

.new-cloud{

    position:absolute;

    top:-36px;

    right:-18px;

    background:linear-gradient(135deg,#C62828,#8E1B1B);

    color:#fff;

    padding:7px 16px;

    border-radius:999px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

    white-space:nowrap;

    box-shadow:0 10px 25px rgba(166,27,27,.35);

    animation:newCloud 1.4s infinite;

    z-index:2;

}

/* Bubble Pointer */

.new-cloud::after{

    content:"";

    position:absolute;

    bottom:-7px;

    left:50%;

    transform:translateX(-50%);

    border-left:8px solid transparent;

    border-right:8px solid transparent;

    border-top:10px solid #8E1B1B;

}

@keyframes newCloud{

    0%{

        transform:scale(1);

        box-shadow:0 8px 20px rgba(255,90,31,.25);

    }

    50%{

        transform:scale(1.08);

        box-shadow:0 12px 30px rgba(255,90,31,.45);

    }

    100%{

        transform:scale(1);

        box-shadow:0 8px 20px rgba(255,90,31,.25);

    }

}

@keyframes newBlink{

    0%{

        transform:scale(1);

        opacity:1;

        box-shadow:0 0 0 rgba(255,98,0,0);

    }

    50%{

        transform:scale(1.02);

        opacity:.82;

        box-shadow:0 0 16px rgba(255,98,0,.55);

    }

    100%{

        transform:scale(1);

        opacity:1;

        box-shadow:0 0 0 rgba(255,98,0,0);

    }

}

/* ===========================
   HEADER
=========================== */

.card-header{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-bottom:18px;

}

.thumb{

    width:84px;

    height:84px;

    border-radius:16px;

    object-fit:cover;

    flex-shrink:0;

}

.card-title{

    flex:1;

}

.card-title h2{

    font-size:22px;

    line-height:1.3;

    color:#111827;

    margin:0;

}

.category{

    display:inline-block;

    background:#EEF2FF;

    color:#4F46E5;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}

/* ===========================
   COMMUNICATION
=========================== */

.communication{

    margin:18px 0;

}

.headline{

    font-size:19px;

    font-weight:700;

    line-height:1.5;

    color:#111827;

    margin-bottom:10px;

}

.message{

    font-size:16px;

    color:#475569;

    line-height:1.8;

}

/* ===========================
   PRIME BOX
=========================== */

.prime-box{

    background:#FFF9EC;

    border:1px solid #FFD466;

    border-radius:16px;

    padding:16px;

    margin-bottom:18px;

}

.prime-box strong{

    display:block;

    font-size:17px;

    margin-bottom:8px;

}

.prime-box p{

    font-size:15px;

    color:#64748B;

    line-height:1.6;

}

/* ===========================
   BUTTON
=========================== */

.start-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:56px;

    text-decoration:none;

    background:linear-gradient(90deg,#4F46E5,#7C3AED);

    color:#fff;

    border-radius:16px;

    font-size:20px;

    font-weight:700;

    transition:.25s;

}

.start-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(79,70,229,.35);

}

/* ===========================
   EMPTY STATE
=========================== */

.empty-state{

    text-align:center;

    padding:60px 20px;

}

.empty-state img{

    width:140px;

    margin-bottom:20px;

}

.empty-state h2{

    font-size:24px;

    margin-bottom:10px;

}

.empty-state p{

    color:#64748B;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:480px){

.container{

    padding:12px;

}

.card{

    padding:16px;

}

.thumb{

    width:72px;

    height:72px;

}

.card-title h2{

    font-size:20px;

}

.category{

    font-size:12px;

    padding:7px 14px;

}

.headline{

    font-size:17px;

}

.message{

    font-size:15px;

}

.start-btn{

    height:52px;

    font-size:18px;

}

.date-heading{

    font-size:20px;

}

.new-ribbon{

    height:28px;

    font-size:12px;

}

}