
        /* 1. Button pulse */
        @keyframes pulse-glow {
            0% { transform: scale(1); box-shadow: 0 4px 15px var(--accent-color-glow); }
            50% { transform: scale(1.03); box-shadow: 0 6px 25px var(--accent-color-glow); }
            100% { transform: scale(1); box-shadow: 0 4px 15px var(--accent-color-glow); }
        }

        /* 2. Graphic Glitch Effect */
        @keyframes glitch-effect {
          0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
          5% { transform: translate(-3px, -2px); clip-path: inset(10% 0 80% 0); }
          10% { transform: translate(3px, 2px); clip-path: inset(80% 0 10% 0); }
          15% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
          85% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
          90% { transform: translate(5px, -3px); clip-path: inset(40% 0 40% 0); }
          95% { transform: translate(-5px, 3px); clip-path: inset(20% 0 60% 0); }
        }


        /* --- Section Styling --- */

        #special-offer-1111 {
            background: var(--background-color);
            padding: 60px 20px;
            overflow: hidden;
            /* This prepares the 3D space */
            perspective: 1000px;
        }

        .offer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            position: relative;
            background: var(--surface-color);
            padding: 60px 40px;
            border-radius: 10px;
            /* 3D-effect and premium glow */
            transform-style: preserve-3d;
            transition: transform 0.1s ease;
            border: 1px solid var(--accent-color-glow);
            box-shadow: 
                0 0 20px var(--accent-color-glow),
                0 0 40px var(--accent-color-glow) inset;
        }

        .offer-content {
            flex: 2;
            z-index: 2;
            /* Pushes the content "forward" in 3D space */
            transform: translateZ(40px);
        }

        .offer-title {
            font-family: var(--heading-font);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .offer-title .highlight-11 {
            color: var(--secondary-accent);
            text-shadow: 0 0 10px var(--secondary-accent), 0 0 20px var(--secondary-accent);
        }

        .offer-text {
            font-family: var(--default-font);
            font-size: 1.1rem;
            color: var(--default-color);
            margin-bottom: 30px;
            max-width: 500px;
        }

        /* --- Countdown Timer Styles --- */
        .offer-countdown {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            font-family: var(--heading-font);
        }

        .time-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.2);
            padding: 10px 15px;
            border-radius: 5px;
            min-width: 70px;
        }

        .time-block span {
            display: block;
            color: var(--heading-color);
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            text-shadow: 0 0 5px var(--accent-color-glow);
        }

        .time-block .time-label {
            font-family: var(--default-font);
            font-size: 0.75rem; /* 12px */
            color: var(--default-color);
            font-weight: 400;
            text-transform: uppercase;
            margin-top: 5px;
            text-shadow: none;
        }

        .time-divider {
            font-size: 2rem;
            color: var(--accent-color);
            align-self: center;
            padding-bottom: 15px; /* Aligns with numbers */
        }
        
        .timer-expired {
            color: var(--secondary-accent); 
            font-family: var(--heading-font); 
            font-size: 1.5rem; 
            width: 100%; 
            text-align: center;
        }

        /* --- Animated Button --- */
        .btn-offer-page {
            font-family: var(--heading-font);
            text-decoration: none;
            display: inline-block;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 600;
            color: #030414;
            background: var(--accent-color);
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            animation: pulse-glow 2.5s infinite ease-in-out;
            transform-style: preserve-3d;
            transform: translateZ(20px); /* Lifts button */
        }

        .btn-offer-page:hover {
            background: var(--secondary-accent);
            color: var(--contrast-color);
            animation: none; 
            box-shadow: 0 6px 20px rgba(247, 37, 133, 0.6);
            transform: translateZ(20px) translateY(-3px); /* Lifts button on hover */
        }

        .btn-offer-page span {
            display: inline-block;
            transition: transform 0.3s ease;
            margin-left: 8px;
        }

        .btn-offer-page:hover span {
            transform: translateX(5px);
        }

        /* --- Animated Glitch Graphic --- */
        .offer-graphic {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 300px;
            position: relative;
            z-index: 1;
            transform: translateZ(20px);
        }

        .graphic-11 {
            font-family: var(--brand-font);
            font-size: 10rem;
            font-weight: 900;
            color: var(--accent-color-glow);
            transform: rotate(-10deg);
            line-height: 1;
            text-shadow: 0 0 20px var(--accent-color-glow);
            position: relative;
            opacity: 0.6;
        }

        /* These two create the glitch effect */
        .graphic-11::before,
        .graphic-11::after {
            content: '11';
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0.8;
        }

        .graphic-11::before {
            color: var(--secondary-accent);
            animation: glitch-effect 3s infinite steps(2, end);
        }

        .graphic-11::after {
            color: var(--accent-color);
            animation: glitch-effect 3s infinite steps(2, end);
            animation-delay: -1.5s; /* Offset the second glitch */
        }


        /* --- Responsive --- */
        @media (max-width: 768px) {
            .offer-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
                /* Disable 3D tilt on mobile */
                transform: none !important;
            }
            
            .offer-countdown {
                justify-content: center;
                gap: 10px;
            }

            .time-block {
                padding: 8px 10px;
                min-width: 60px;
            }

            .time-block span { font-size: 1.5rem; }
            .time-divider { font-size: 1.5rem; }

            .offer-graphic {
                display: none; 
            }

            .offer-title { font-size: 2rem; }
        }