
        /* ========== CSS RESET ========== */
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;
            line-height:1.6;
            color:#333;
            /* Animated gradient background */
            background:linear-gradient(-45deg,#667eea,#764ba2,#f093fb,#4facfe);
            background-size:400% 400%;
            animation:gradientFlow 15s ease infinite;
            min-height:100vh;
            display:flex;
            flex-direction:column;
            align-items:center;
            padding:20px;
        }

        /* Background animation keyframes */
        @keyframes gradientFlow{
            0%   {background-position:0% 50%}
            50%  {background-position:100% 50%}
            100% {background-position:0% 50%}
        }

        /* ========== UNIFIED WIDTH CONTAINER ========== */
        .content-box{
            width:100%;
            max-width:600px;
            position:relative;
            margin-bottom:20px;
        }

        /* ========== TEXT SECTION ========== */
        .text-section{
            background:rgba(255,255,255,.15);
            backdrop-filter:blur(8px);
            padding:20px;
            border-radius:10px;
            color:#fff;
            text-align:center;
            box-shadow:0 4px 6px rgba(0,0,0,.1);
        }

        /* ========== IMAGE WRAPPER ========== */
        .img-wrapper{
            position:relative;
            overflow:hidden;
            border-radius:10px;
            transition:transform .3s ease;
        }
        .img-wrapper:hover{
            transform:scale(.96);
        }
        .img-wrapper img{
            width:100%;
            height:auto;
            display:block;
        }

        /* ========== OVERLAY TEXT ========== */
        .overlay{
            position:absolute;
            left:0;
            right:0;
            bottom:0;
            padding:12px 16px;
            background:rgba(0,0,0,.5);
            color:#fff;
            font-size:14px;
            text-align:center;
            pointer-events:none;
        }

        /* ========== BUTTON CONTAINER ========== */
        .button-container{
            width:80%;
            max-width:480px;
            margin-top:20px;
        }
        .cta-button{
            width:100%;
            padding:15px 30px;
            background:linear-gradient(45deg,#ff6b6b,#ff8e8e);
            color:#fff;
            border:none;
            border-radius:50px;
            font-size:18px;
            font-weight:bold;
            cursor:pointer;
            text-decoration:none;
            display:inline-block;
            text-align:center;
            box-shadow:0 4px 15px rgba(0,0,0,.2);
            transition:all .3s ease;
        }
        .cta-button:hover{
            transform:translateY(-3px);
            box-shadow:0 6px 20px rgba(0,0,0,.3);
            background:linear-gradient(45deg,#ff5252,#ff7979);
        }
        .cta-button:active{
            transform:translateY(-1px);
            box-shadow:0 3px 10px rgba(0,0,0,.2);
        }

        /* ========== RESPONSIVE TWEAKS ========== */
        @media (min-width:768px){
            body{padding:40px}
            .text-section{padding:30px;font-size:18px}
            .overlay{font-size:16px;padding:15px 20px}
            .cta-button{font-size:20px;padding:18px 40px}
        }
        @media (max-width:320px){
            body{padding:10px}
            .text-section{padding:15px;font-size:14px}
            .cta-button{font-size:16px;padding:12px 25px}
        }
