/* Numerology page overrides, extracted from the original inline <style> block. */
        .modal-content {
            background: #242323;
            border-radius: 10px;
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--accent-gold);
            color: #000;
            font-size: 12px;
            padding: 0px 9px;
            border-radius: 50%;
            font-weight: 400;
        }

        .power-number-card {
            display: flex;
            gap: 55px;
            align-items: center;
            background: linear-gradient(135deg, #161515, #15101c);
            border: 1px solid rgba(255, 215, 0, 0.35);
            border-radius: 18px;
            padding: 30px 35px;
            margin: 40px 0 25px;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
        }

        .power-badge {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: radial-gradient(circle, #ffd700, #c89b00);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
        }

        .power-number {
            font-size: 32px;
            font-weight: 800;
            color: #111;
        }

        .power-content h3 {
            margin: 0;
            font-size: 22px;
            color: #ffe344;
        }

        .power-title {
            margin: 6px 0;
            font-size: 18px;
            color: #fff;
        }

        .power-desc {
            font-size: 17px;
            color: #d0cfe5;
            max-width: 520px;
        }

        .cell.highlight {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            border: 2px solid gold;
        }

        @media (max-width: 768px) {
            .modal-close {
                position: absolute;
                top: 0px;
                right: 7px;
                font-size: 35px;
            }

            .modal-content {
                padding: 25px 20px 20px 20px;
            }

            .power-number-card {
                display: block;
                padding: 20px 22px !important;
            }

            .power-badge {
                width: 50px;
                height: 50px;
            }

            .power-number {
                font-size: 24px;
            }

            .power-content {
                margin-top: 12px;
            }

        }
