       /* Base Reset Scope */
        .mybanner-wrap, .mybanner-wrap * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Outer Banner Container (Reduced padding & height) */
        .mybanner-wrap {
            width: 100%;
            max-width: 650px;
            background-color: #FFF2A8;
            border: 2px solid #F5C600;
            border-radius: 12px;
            padding: 14px 12px; /* Reduced vertical padding */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 0 auto;
        }

        /* Header / Badge (Reduced margin) */
        .mybanner-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px; /* Reduced spacing */
            flex-wrap: wrap;
        }

        .mybanner-icon {
            font-size: 18px;
            line-height: 1;
        }

        .mybanner-title {
            color: #8D3A00;
            font-weight: 800;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .mybanner-badge {
            background-color: #2E9D42;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 14px;
            padding: 4px 14px; /* Reduced badge size */
            border-radius: 16px;
            display: inline-block;
            text-transform: uppercase;
            white-space: nowrap;
        }

        /* Timer Grid Layout */
        .mybanner-grid {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 12px; /* Reduced spacing */
            width: 100%;
            max-width: 450px;
        }

        /* Countdown Card Styling (Reduced height) */
        .mybanner-card {
            background-color: #FFFFFF;
            border-radius: 8px;
            flex: 1;
            max-width: 85px;
            height: 60px; /* Reduced box height from 85px to 60px */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
            padding: 2px;
        }

        .mybanner-num {
            color: #C04A00;
            font-size: 26px; /* Slightly adjusted for smaller height */
            font-weight: 800;
            line-height: 1;
        }

        .mybanner-lbl {
            color: #8D3A00;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }

        /* Footer Text */
        .mybanner-foot {
            color: #8D3A00;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.2;
        }

        .mybanner-foot a {
            color: #8D3A00;
            font-weight: 800;
            text-decoration: underline;
        }

        .mybanner-foot a:hover {
            color: #C04A00;
        }

        /* Desktop Enhancements */
        @media (min-width: 768px) {
            .mybanner-wrap { padding: 18px 20px; }
            .mybanner-title { font-size: 16px; }
            .mybanner-badge { font-size: 16px; padding: 5px 16px; }
            .mybanner-card { height: 68px; } /* Desktop box height */
            .mybanner-num { font-size: 30px; }
            .mybanner-lbl { font-size: 10px; }
            .mybanner-foot { font-size: 15px; }
        }

        /* Small Mobile Adjustments */
        @media (max-width: 400px) {
            .mybanner-grid { gap: 6px; }
            .mybanner-card { height: 55px; } /* Compact mobile height */
            .mybanner-num { font-size: 22px; }
            .mybanner-lbl { font-size: 9px; }
            .mybanner-title { font-size: 13px; }
            .mybanner-badge { font-size: 13px; }
        }