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

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

.hero{
    min-height:100vh;
    background:#0054cd;
    position:relative;
    overflow:hidden;
}

/* SOCIAL BAR - responsive */
.social-bar{
    position:absolute;
    top:0;
    left:0;
    background:#ffffff;
    padding:12px 25px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
    flex-wrap:wrap;
}

.social-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgb(242 104 57 / 67%);;
    color:#f26839;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    transition:0.2s;
    cursor: pointer;
}

.social-text{
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    margin-left:10px;
    font-weight:500;
}

/* LOGO - responsive */
.logo{
    position:absolute;
    top:40px;
    right:60px;
    z-index:10;
}

.logo h1{
    color:#ffffff;
    font-size:34px;
    font-weight:900;
    letter-spacing:2px;
}

/* MAIN CONTAINER - responsive */
.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding:100px 0 80px;
}

/* LEFT SIDE - with image frame */
.left{
    flex:1;
    position:relative;
}

.frame{
    width:100%;
    max-width:520px;
    background:url('/images/discount-background.webp') center/cover;
    border:10px solid #fff;
    padding:25px;
    position:relative;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

.frame img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* RIGHT SIDE - text content */
.right{
    flex:1;
    position:relative;
}

.offer{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.offer span{
    color:#fff;
    font-weight:700;
    letter-spacing:3px;
    font-size:18px;
}

.offer-line{
    width:120px;
    height:3px;
    background:#fff;
}

.title{
    line-height:0.85;
}

.title span{
    display:block;
    font-size:140px;
    font-weight:900;
    color:#ffd234;
    text-shadow:
        8px 8px 0 rgba(0,0,0,.18);
}

.cashback{
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(135deg, #f26839, #fa9d1a);
    padding: 18px 30px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cashback strong{
    color:#2c2c2c;
}

.cashback:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 104, 57, 0.4);
    animation: none;
}
.cashback:active {
    transform: translateY(2px);
}

/* pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242, 104, 57, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(242, 104, 57, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242, 104, 57, 0);
    }
}


.description{
    margin-top:25px;
    max-width:520px;
    color:#fff;
    font-size:16px;
    line-height:1.8;
}

.website{
    margin-top:25px;
    color:#fff;
    font-weight:800;
    letter-spacing:3px;
    font-size:14px;
}

/* DATE - responsive */
.date{
    position:absolute;
    left:70px;
    bottom:40px;
    color:#fff;
    font-size:38px;
    font-weight:300;
    z-index:10;
}

.date:before{
    content:"";
    display:block;
    width:220px;
    height:3px;
    background:#fff;
    margin-bottom:15px;
}

/* DECORATIVE SHAPES */
.triangle1{
    position:absolute;
    top:120px;
    left:48%;
    width:0;
    height:0;
    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-bottom:45px solid #ffd234;
    opacity:0.6;
    z-index:1;
}

.triangle2{
    position:absolute;
    right:120px;
    bottom:180px;
    width:0;
    height:0;
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-top:40px solid #ffd234;
    opacity:0.6;
    z-index:1;
}

.triangle3{
    position:absolute;
    left:40px;
    bottom:200px;
    width:0;
    height:0;
    border-left:15px solid transparent;
    border-right:15px solid transparent;
    border-bottom:30px solid #ffd234;
    opacity:0.6;
    z-index:1;
}

/* DECORATIVE CIRCLES */
.circle{
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    pointer-events:none;
    z-index:0;
}

.circle.one{
    top:-120px;
    right:-120px;
}

.circle.two{
    bottom:-150px;
    left:-150px;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet Landscape */
@media(max-width:1200px){
    .title span{
        font-size:110px;
    }
    .cashback{
        font-size:24px;
        padding:14px 25px;
    }
    .date{
        font-size:32px;
        left:50px;
    }
    .date:before{
        width:180px;
    }
}

/* Tablet Portrait */
@media(max-width:992px){
    .container{
        flex-direction:column;
        text-align:center;
        padding-top:140px;
        padding-bottom:80px;
        gap:0;
    }
    
    .offer{
        justify-content:center;
    }
    
    .frame{
        margin:auto;
    }
    
    .date{
        position:relative;
        left:auto;
        text-align:center;
    }
    
    .date:before{
        margin:0 auto 15px;
    }
    
    .title span{
        font-size:90px;
    }
    
    .description{
        margin-left:auto;
        margin-right:auto;
    }
    
    .right{
        text-align:center;
    }
    
    .cashback{
        margin-left:auto;
        margin-right:auto;
    }
    
    .website{
        text-align:center;
    }
    
    /* adjust triangles for tablet */
    .triangle1{
        top:80px;
        left:30%;
    }
    .triangle2{
        right:30px;
        bottom:100px;
    }
    .triangle3{
        left:20px;
        bottom:150px;
    }
}

/* Mobile Large */
@media(max-width:768px){
    .social-bar{
        width:100%;
        justify-content:center;
        padding:10px 15px;
        gap:8px;
        position:relative;
    }
    
    .social-icon{
        width:28px;
        height:28px;
        font-size:11px;
    }
    
    .social-text{
        font-size:10px;
        letter-spacing:1px;
        margin-left:5px;
    }
    
    .logo{
        top:20px;
        right:20px;
    }
    
    .logo h1{
        font-size:22px;
        letter-spacing:1px;
    }
    
    .title span{
        font-size:70px;
        text-shadow: 5px 5px 0 rgba(0,0,0,.18);
    }
    
    .cashback{
        font-size:18px;
        padding:12px 20px;
    }
    
    .offer span{
        font-size:14px;
        letter-spacing:2px;
    }
    
    .offer-line{
        width:80px;
    }
    
    .description{
        font-size:14px;
        line-height:1.6;
        padding:0 10px;
    }
    
    .website{
        font-size:11px;
        letter-spacing:2px;
    }
    
    .date{
        font-size:24px;
        margin-top:0;
    }
    
    .date:before{
        width:150px;
    }
    
    .frame{
        border-width:6px;
        padding:15px;
    }
    
    .container{
        width:92%;
        padding-top:30px;
    }
    
    /* hide some triangles on mobile */
    .triangle2, .triangle3{
        opacity:0.3;
    }
    .triangle1{
        top:50px;
        left:20%;
        border-bottom:30px solid #ffd234;
        border-left:18px solid transparent;
        border-right:18px solid transparent;
    }
}

/* Mobile Small */
@media(max-width:480px){
    .title span{
        font-size:48px;
        text-shadow: 4px 4px 0 rgba(0,0,0,.18);
    }
    
    .cashback{
        font-size:15px;
        padding:10px 16px;
        margin-top:20px;
    }
    
    .offer{
        gap:12px;
        margin-bottom:15px;
    }
    
    .offer span{
        font-size:12px;
    }
    
    .offer-line{
        width:60px;
        height:2px;
    }
    
    .description{
        font-size:12px;
        margin-top:15px;
    }
    
    .website{
        font-size:10px;
        margin-top:15px;
    }
    
    .date{
        font-size:18px;
    }
    
    .date:before{
        width:120px;
        height:2px;
    }
    
    .social-icon{
        width:24px;
        height:24px;
        font-size:10px;
    }
    
    .logo h1{
        font-size:16px;
    }
    
    .frame{
        border-width:4px;
        padding:10px;
    }
    
    .circle.one{
        width:200px;
        height:200px;
        top:-80px;
        right:-80px;
    }
    
    .circle.two{
        width:200px;
        height:200px;
        bottom:-80px;
        left:-80px;
    }
}

/* For very small devices */
@media(max-width:360px){
    .title span{
        font-size:40px;
    }
    
    .cashback{
        font-size:13px;
        padding:8px 14px;
    }
    
    .container{
        gap:30px;
    }
}

/* Add smooth transitions */
.social-icon, .logo h1, .frame, .cashback{
    transition: all 0.3s ease;
}

/* Hover effects */
.social-icon:hover{
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.frame:hover{
    transform: scale(1.02);
    transition: 0.3s;
}