/* Bold Background Styles */
        .promo-bold-bg {
            background: linear-gradient(135deg,
                    var(--color-primary-600) 0%,
                    var(--color-primary-800) 50%,
                    var(--color-secondary-600) 100%);
        }

        .dark .promo-bold-bg {
            background: linear-gradient(135deg,
                    var(--color-primary-800) 0%,
                    var(--color-primary-950) 50%,
                    var(--color-secondary-900) 100%);
        }

        /* Bold Geometric Shapes */
        .promo-bold-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .promo-bold-square {
            position: absolute;
            border: 3px solid rgba(255, 255, 255, 0.1);
            animation: rotate-square 20s linear infinite;
        }

        .dark .promo-bold-square {
            border-color: rgba(255, 255, 255, 0.05);
        }

        .promo-bold-square-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
            transform: rotate(15deg);
        }

        .promo-bold-square-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: 10%;
            transform: rotate(-25deg);
            animation-delay: 3s;
        }

        .promo-bold-square-3 {
            width: 150px;
            height: 150px;
            top: 40%;
            left: -30px;
            transform: rotate(45deg);
            animation-delay: 6s;
        }

        @keyframes rotate-square {
            0% {
                transform: rotate(var(--start-rotation, 0deg)) scale(1);
            }

            50% {
                transform: rotate(calc(var(--start-rotation, 0deg) + 180deg)) scale(1.1);
            }

            100% {
                transform: rotate(calc(var(--start-rotation, 0deg) + 360deg)) scale(1);
            }
        }

        .promo-bold-square-1 {
            --start-rotation: 15deg;
        }

        .promo-bold-square-2 {
            --start-rotation: -25deg;
        }

        .promo-bold-square-3 {
            --start-rotation: 45deg;
        }

        .promo-bold-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(255, 255, 255, 0.05);
            animation: float-triangle 15s ease-in-out infinite;
        }

        .dark .promo-bold-triangle {
            border-bottom-color: rgba(255, 255, 255, 0.02);
        }

        .promo-bold-triangle-1 {
            top: 20%;
            right: 20%;
        }

        .promo-bold-triangle-2 {
            bottom: 15%;
            right: 40%;
            transform: rotate(180deg);
            animation-delay: 5s;
        }

        @keyframes float-triangle {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(10deg);
            }
        }

        /* Bold Content Container */
        .promo-bold-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        /* Bold Badge */
        .promo-bold-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 0.5rem;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 2.5rem;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        .dark .promo-bold-badge {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.95);
        }

        @keyframes pulse-badge {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }

        .dark @keyframes pulse-badge {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }

        /* Bold Headline */
        .promo-bold-headline {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dark .promo-bold-headline {
            background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
        }

        @media (min-width: 768px) {
            .promo-bold-headline {
                font-size: 3rem;
            }
        }

        @media (max-width: 640px) {
            .promo-bold-headline {
                font-size: 1.875rem;
            }
        }

        /* Bold Description */
        .promo-bold-description {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            font-weight: 500;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .dark .promo-bold-description {
            color: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 640px) {
            .promo-bold-description {
                font-size: 1rem;
            }
        }

        /* Bold Promo Code */
        .promo-bold-code-container {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .promo-bold-code-label {
            font-size: 1.125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dark .promo-bold-code-label {
            color: rgba(255, 255, 255, 0.75);
        }

        .promo-bold-code-box {
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            padding: 0.625rem 1.25rem;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .dark .promo-bold-code-box {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
        }

        .promo-bold-code-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
        }

        .dark .promo-bold-code-box:hover {
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.6);
        }

        .promo-bold-code-text {
            font-family: 'Courier New', monospace;
            font-size: 1.125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #78350f;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 640px) {
            .promo-bold-code-text {
                font-size: 1rem;
            }
        }

        /* Bold CTA Button - white with primary color text */
        .promo-bold-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: white;
            color: var(--color-primary-700);
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .promo-bold-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--color-primary-50), var(--color-secondary-50));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .promo-bold-cta:hover::before {
            opacity: 1;
        }

        .promo-bold-cta span,
        .promo-bold-cta svg {
            position: relative;
            z-index: 1;
        }

        .dark .promo-bold-cta {
            background: rgba(255, 255, 255, 0.95);
            color: var(--color-primary-600);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }

        .promo-bold-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        }

        .dark .promo-bold-cta:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
        }

        [dir="rtl"] .promo-bold-cta svg {
            transform: rotate(180deg);
        }

        /* Bold Countdown */
        .promo-bold-countdown {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 640px) {
            .promo-bold-countdown {
                gap: 1rem;
            }
        }

        .promo-bold-countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            min-width: 100px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .dark .promo-bold-countdown-item {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 640px) {
            .promo-bold-countdown-item {
                min-width: 70px;
                padding: 1rem;
            }
        }

        .promo-bold-countdown-value {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark .promo-bold-countdown-value {
            color: white;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 640px) {
            .promo-bold-countdown-value {
                font-size: 2rem;
            }
        }

        .promo-bold-countdown-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
            font-weight: 700;
        }

        .dark .promo-bold-countdown-label {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Bold Terms */
        .promo-bold-terms {
            margin-top: 2.5rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .dark .promo-bold-terms {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Bold Icon */
        .promo-bold-icon {
            font-size: 4rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 4px 15px rgba(251, 191, 36, 0.4));
            animation: bounce-icon 2s ease-in-out infinite;
        }

        .dark .promo-bold-icon {
            color: #f59e0b;
            filter: drop-shadow(0 4px 15px rgba(217, 119, 6, 0.5));
        }

        @keyframes bounce-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }