.mobile-review-btn-wrapper {
        padding: 12px 20px;
        margin: 4px 0 8px 0;
    }

    .mobile-review-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px 24px;
        background: linear-gradient(145deg, #0f1a4a, #1a2a6c);
        color: #ffffff !important;
        border-radius: 14px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none !important;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 25px rgba(26, 42, 108, 0.4);
        transition: all 0.3s ease;
        width: 100%;
    }

    .mobile-review-btn i:first-child {
        color: #ffd700;
        font-size: 18px;
    }

    .mobile-review-btn i:last-child {
        font-size: 14px;
        opacity: 0.7;
        transition: transform 0.3s ease;
    }

    .mobile-review-btn:active {
        transform: scale(0.97);
    }

    .mobile-review-btn:active i:last-child {
        transform: translateX(4px);
    }

    body.dark-mode .mobile-review-btn {
        background: linear-gradient(145deg, #0a1238, #14215e);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 25px rgba(26, 42, 108, 0.5);
    }

    body.dark-mode .mobile-review-btn i:first-child {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
    }
