        /* Blog Article Styles */
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .article-header {
            margin-bottom: 2rem;
        }

        .article-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 2rem;
            border-bottom: 3px solid #1D4B92;
            padding-bottom: 1rem;
            text-align: center;
        }

        .article-meta {
            display: flex;
            gap: 1rem;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .article-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        /* Уменьшить отступ снизу на мобильном */
        @media (max-width: 768px) {
            .article-image {
                margin-bottom: 0.5rem;
            }
        }

        /* Уменьшить заглавную картинку на 25% на десктопе */
        @media (min-width: 769px) {
            .article-image {
                width: 75%;
                margin-left: auto;
                margin-right: auto;
                display: block;
            }
        }

        .article-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #374151;
        }

        .article-content h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            margin: 2.5rem 0 1rem 0;
        }

        .article-content h3 {
            font-size: 1.375rem;
            font-weight: 600;
            color: #1f2937;
            margin: 2rem 0 0.75rem 0;
        }

        .article-content p {
            margin-bottom: 1.25rem;
        }

        .article-content ul, .article-content ol {
            margin: 1.25rem 0;
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: 0.75rem;
        }

        /* WordPress Block Images */
        .article-content .wp-block-image {
            margin: 1.5rem 0;
        }

        .article-content .wp-block-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        /* Уменьшить картинки на 25% на десктопе */
        @media (min-width: 769px) {
            .article-content .wp-block-image img {
                max-width: 75%;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* WordPress Block Tables */
        .article-content .wp-block-table {
            margin: 2rem 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            position: relative;
        }

        /* Индикатор прокрутки для мобильных */
        @media (max-width: 768px) {
            .article-content .wp-block-table::after {
                content: '← Deslice →';
                position: absolute;
                bottom: 0.5rem;
                right: 1rem;
                background: rgba(0, 82, 163, 0.9);
                color: white;
                padding: 0.25rem 0.75rem;
                border-radius: 4px;
                font-size: 0.75rem;
                pointer-events: none;
                opacity: 0.8;
                animation: scroll-hint 2s ease-in-out infinite;
            }

            @keyframes scroll-hint {
                0%, 100% { opacity: 0.8; }
                50% { opacity: 0.4; }
            }

            .article-content .wp-block-table.scrolled::after {
                display: none;
            }
        }

        .article-content .wp-block-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Для таблиц с много колонок на десктопе */
        @media (min-width: 769px) {
            .article-content .wp-block-table table {
                min-width: 600px;
            }
        }

        .article-content .wp-block-table th,
        .article-content .wp-block-table thead td {
            background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
            color: white !important;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .article-content .wp-block-table th:last-child,
        .article-content .wp-block-table thead td:last-child {
            border-right: none;
        }

        .article-content .wp-block-table th strong,
        .article-content .wp-block-table thead td strong {
            color: white !important;
        }

        /* Первая строка tbody тоже как заголовок (ТОЛЬКО для таблиц без thead) */
        .article-content .wp-block-table table:not(:has(thead)) tbody tr:first-child td {
            background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
            color: white !important;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .article-content .wp-block-table table:not(:has(thead)) tbody tr:first-child td:first-child {
            border-top-left-radius: 8px;
        }

        .article-content .wp-block-table table:not(:has(thead)) tbody tr:first-child td:last-child {
            border-right: none;
            border-top-right-radius: 8px;
        }

        .article-content .wp-block-table table:not(:has(thead)) tbody tr:first-child td strong {
            color: white !important;
        }

        .article-content .wp-block-table tbody tr:not(:first-child) td {
            padding: 1rem;
            border: 1px solid #e5e7eb;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        /* Стиль для td в таблицах с thead */
        .article-content .wp-block-table thead + tbody td {
            padding: 1rem;
            border: 1px solid #e5e7eb;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .article-content .wp-block-table tr:hover {
            background: #f9fafb;
        }

        /* Prize Table */
        .prize-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .prize-table th {
            background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .prize-table td {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .prize-table tr:last-child td {
            border-bottom: none;
        }

        .prize-table tr:hover {
            background: #f9fafb;
        }

        /* Casinos Section - Horizontal Cards */
        .casinos-section {
            margin: 3rem 0;
            padding: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .casinos-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
            box-sizing: border-box;
        }

        /* Desktop Layout: All 3 cards in one horizontal row with 1st in center */
        @media (min-width: 993px) {
            .casinos-grid {
                display: flex;
                flex-direction: row;
                max-width: 1200px;
                margin: 0 auto;
                gap: 1.5rem;
            }

            .casino-card {
                flex: 1;
            }

            /* Reorder cards: 2 - 1 - 3 */
            .casino-card:first-child {
                order: 2;
            }

            .casino-card:nth-child(2) {
                order: 1;
            }

            .casino-card:nth-child(3) {
                order: 3;
            }
        }

        .casino-card {
            background: white;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            border: 3px solid #f3f4f6;
            position: relative;
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
        }

        /* Casino Rank Badge */
        .casino-rank-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #78350f;
            font-size: 16px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5), 0 0 24px rgba(251, 191, 36, 0.3);
            z-index: 10;
            border: 2px solid #fff;
            animation: rank-pulse 2s ease-in-out infinite;
        }

        .casino-card:nth-child(2) .casino-rank-badge,
        .casino-card:nth-child(3) .casino-rank-badge {
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            color: #374151;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            animation: none;
        }

        @keyframes rank-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5), 0 0 24px rgba(251, 191, 36, 0.3);
            }
            50% {
                transform: scale(1.08);
                box-shadow: 0 6px 24px rgba(251, 191, 36, 0.7), 0 0 32px rgba(251, 191, 36, 0.5);
            }
        }

        /* Casino Rating Stars */
        .casino-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem auto 0.5rem auto;
            padding: 0 1rem;
        }

        .casino-rating .stars {
            display: flex;
            gap: 0.25rem;
        }

        .casino-rating .stars i {
            font-size: 16px;
            color: #fbbf24;
            filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
        }

        .casino-rating .rating-text {
            font-size: 14px;
            font-weight: 700;
            color: #78350f;
            margin-left: 0.25rem;
        }

        /* Enhanced Golden Glow for First Place */
        .casino-card:first-child {
            animation: winner-glow-strong 3s ease-in-out infinite;
            border: 3px solid rgba(251, 191, 36, 0.4);
        }

        .casino-card:first-child .casino-logo {
            border-radius: 13px 13px 0 0;
        }

        .casino-card:first-child .casino-logo-img {
            animation: logo-breathe 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
        }

        @keyframes logo-breathe {
            0%, 100% {
                filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.2)) drop-shadow(0 0 8px rgba(251, 191, 36, 0.1)) brightness(1.02);
                transform: scale(1.01);
            }
            50% {
                filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4)) drop-shadow(0 0 15px rgba(251, 191, 36, 0.25)) brightness(1.08);
                transform: scale(1.05);
            }
        }

        @keyframes winner-glow-strong {
            0%, 100% {
                box-shadow:
                    0 4px 16px rgba(0, 0, 0, 0.08),
                    0 0 40px rgba(251, 191, 36, 0.4),
                    0 0 60px rgba(251, 191, 36, 0.2),
                    0 0 80px rgba(251, 191, 36, 0.1);
                border-color: rgba(251, 191, 36, 0.4);
            }
            50% {
                box-shadow:
                    0 8px 32px rgba(251, 191, 36, 0.3),
                    0 0 60px rgba(251, 191, 36, 0.6),
                    0 0 100px rgba(251, 191, 36, 0.4),
                    0 0 140px rgba(251, 191, 36, 0.2);
                border-color: rgba(251, 191, 36, 0.7);
            }
        }

        .best-choice-badge {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #78350f;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
            margin: 1rem auto 0.5rem auto;
            animation: pulse-badge 2s ease-in-out infinite;
            text-align: center;
        }

        .best-choice-badge i {
            font-size: 1rem;
            color: #78350f;
        }

        .secondary-badge {
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            color: #374151;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin: 1rem auto 0.5rem auto;
            text-align: center;
        }

        .secondary-badge i {
            font-size: 0.875rem;
            color: #374151;
        }

        /* .top-award-icon {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: #fbbf24;
            z-index: 10;
            filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.6));
            animation: trophy-glow 2s ease-in-out infinite;
        }

        .top-award-icon::after {
            content: '1';
            position: absolute;
            top: 35%;
            left: calc(50% - 1px);
            transform: translate(-50%, -50%);
            font-size: 0.8rem;
            font-weight: 700;
            color: #78350f;
            font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
        }

        @keyframes trophy-glow {
            0%, 100% {
                filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.6));
                transform: translateX(-50%) scale(1);
            }
            50% {
                filter: drop-shadow(0 6px 16px rgba(251, 191, 36, 0.8));
                transform: translateX(-50%) scale(1.1);
            }
        } */

        @keyframes pulse-badge {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 16px rgba(251, 191, 36, 0.6);
            }
        }

        .casino-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-radius: 16px;
        }

        .casino-logo {
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 131px;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            position: relative;
            overflow: hidden;
        }

        .casino-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .casino-logo-link {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .casino-logo-img {
            max-width: 180px;
            max-height: 70px;
            height: auto;
            width: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s;
            position: relative;
            z-index: 1;
        }

        .casino-card:hover .casino-logo-img {
            transform: scale(1.08);
        }

        .casino-card:nth-child(1) .casino-logo {
            background: linear-gradient(135deg, #141415 0%, #0a0a0a 100%);
        }

        .casino-card:nth-child(2) .casino-logo {
            background: linear-gradient(135deg, #343A74 0%, #252b5c 100%);
        }

        .casino-card:nth-child(3) .casino-logo {
            background: linear-gradient(135deg, #08102B 0%, #050819 100%);
        }

        .casino-bonus-text {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin: 1rem 2rem 1.5rem 2rem;
            line-height: 1.5;
            min-height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .casino-cta {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(270deg, #dc2626, #ef4444, #dc2626, #b91c1c);
            background-size: 400% 400%;
            color: white;
            padding: 1rem 5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
            position: relative;
            overflow: hidden;
            margin: 0 1.5rem 2rem 1.5rem;
            width: calc(100% - 3rem);
            box-sizing: border-box;
            animation: gradient-shift 4s ease infinite;
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .casino-cta span:first-child {
            font-size: 1.265rem;
            margin-bottom: 0.25rem;
            white-space: nowrap;
        }

        .cta-secondary {
            font-size: 0.84rem;
            opacity: 0.9;
            font-weight: 500;
            white-space: nowrap;
        }

        .casino-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .casino-cta:hover::before {
            width: 400px;
            height: 400px;
        }

        .casino-cta i {
            margin-left: 0.1rem;
            transition: transform 0.3s ease;
        }

        .casino-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.6);
            text-decoration: none;
            color: white;
        }

        .casino-cta:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 992px) {
            .casinos-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .casino-logo {
                padding: 1.5rem;
                height: 112px;
            }

            .casino-logo-img {
                max-width: 160px;
            }

            .casino-bonus-text {
                margin: 1rem 1.5rem 1.5rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .article-container {
                padding: 2rem 0;
            }

            .casinos-section {
                margin: 3rem 1rem;
                padding: 0;
                width: calc(100% - 2rem);
                max-width: 100%;
                box-sizing: border-box;
            }

            .casinos-grid {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .casino-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .casino-logo {
                width: 100%;
                box-sizing: border-box;
            }

            .casino-bonus-text {
                margin: 1rem 1.5rem 1.5rem 1.5rem;
            }

            .casino-cta {
                margin: 0 1.5rem 1.5rem 1.5rem;
                width: calc(100% - 3rem);
                padding: 1rem 2rem;
            }

            .casino-cta span:first-child {
                font-size: 1.771rem;
            }
        }

        /* Article CTA Button */
        .article-cta {
            text-align: center;
            margin: 3rem 0;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(270deg, #dc2626, #ef4444, #dc2626, #b91c1c);
            background-size: 400% 400%;
            color: white;
            padding: 1.25rem 5.625rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
            animation: gradient-shift 4s ease infinite, cta-pulse 3s ease-in-out infinite;
        }

        @keyframes cta-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 40px rgba(220, 38, 38, 0.2);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 12px 60px rgba(220, 38, 38, 0.3);
            }
        }

        .cta-button i {
            margin-left: 0.75rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            animation-play-state: paused;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.8), 0 0 0 6px rgba(220, 38, 38, 0.25);
            text-decoration: none;
            color: white;
        }

        .cta-button:hover i {
            transform: translateX(4px);
        }

        /* FAQ Section - Полностью переработан */
        .faq-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq-question {
            font-size: 1.125rem;
            font-weight: 600;
            color: #0052A3;
            padding: 1.25rem;
            cursor: pointer;
            background: #f9fafb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s ease;
            user-select: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-question.active {
            background: #e0f2fe;
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.25s ease;
            color: #0052A3;
            flex-shrink: 0;
            margin-left: 1rem;
            line-height: 1;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        /* FAQ Answer - Простое надежное решение */
        .faq-answer-wrapper {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-wrapper.active {
            max-height: 500px;
        }

        .faq-answer-content {
            color: #4b5563;
            line-height: 1.6;
            padding: 1.25rem;
        }

        /* Hamburger animation */
        .drawer-toggle .hamburger-line {
            transition: all 0.3s ease;
        }

        .drawer-toggle.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .drawer-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .drawer-toggle.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .article-container {
                padding: 2rem 1.5rem;
            }

            .article-title {
                font-size: 1.5rem;
            }

            .article-content {
                font-size: 1rem;
            }

            .article-content h2 {
                font-size: 1.375rem;
            }

            .article-content h3 {
                font-size: 1.125rem;
            }

            /* Адаптивные изображения на мобильных */
            .article-content .wp-block-image {
                margin: 1rem 0;
            }

            .article-content .wp-block-image img {
                width: 100%;
                height: auto;
                border-radius: 8px;
            }

            /* Адаптивные таблицы на мобильных */
            .article-content .wp-block-table {
                margin: 1.5rem -1.5rem;
                width: calc(100% + 3rem);
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 0 1.5rem;
            }

            .article-content .wp-block-table table {
                min-width: 600px;
                font-size: 0.8125rem;
                table-layout: fixed;
            }

            .article-content .wp-block-table table.has-fixed-layout {
                table-layout: fixed;
            }

            .article-content .wp-block-table th,
            .article-content .wp-block-table td {
                padding: 0.75rem 0.5rem;
                font-size: 0.8125rem;
                white-space: normal;
            }

            .article-content .wp-block-table th {
                font-size: 0.75rem;
                white-space: nowrap;
            }

            .casinos-table {
                display: block;
                overflow-x: auto;
            }

            .prize-table {
                font-size: 0.875rem;
            }

            .prize-table th, .prize-table td {
                padding: 0.75rem 0.5rem;
            }
        }

        /* Дополнительная оптимизация для маленьких экранов */
        @media (max-width: 480px) {
            .article-content .wp-block-table {
                margin: 1.5rem -1.5rem;
                width: calc(100% + 3rem);
                padding: 0 1.5rem;
            }

            .article-content .wp-block-table table {
                min-width: 550px;
                font-size: 0.75rem;
                table-layout: fixed;
            }

            .article-content .wp-block-table th,
            .article-content .wp-block-table td {
                padding: 0.625rem 0.4rem;
                font-size: 0.75rem;
                line-height: 1.4;
            }

            .article-content .wp-block-table th {
                font-size: 0.7rem;
            }
        }

        /* CTA Button for Loto */
        .article-cta {
            text-align: center;
            margin: 3rem 0;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(270deg, #dc2626, #ef4444, #dc2626, #b91c1c);
            background-size: 400% 400%;
            color: white !important;
            padding: 1.25rem 5.625rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
            animation: gradient-shift 4s ease infinite, cta-pulse 3s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes cta-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 40px rgba(220, 38, 38, 0.2);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 12px 48px rgba(220, 38, 38, 0.35);
            }
        }

        .cta-button i {
            margin-left: 0.75rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            animation-play-state: paused;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.8), 0 0 0 6px rgba(220, 38, 38, 0.25);
            text-decoration: none;
            color: white !important;
        }

        .cta-button:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .cta-button {
                padding: 1rem 3rem;
                font-size: 1.125rem;
            }
        }
